:root {
    --service-ink: #28191f;
    --service-muted: #7c6b72;
    --service-rose: #ef3358;
    --service-rose-dark: #cf2547;
    --service-blush: #fff0f3;
    --service-paper: #fffafb;
    --service-line: #f1dfe4;
    --service-shadow: 0 24px 70px rgba(108, 47, 64, .11);
}

html { scroll-behavior: smooth; }
html, body { max-width: 100%; }

body.service-page {
    margin: 0;
    color: var(--service-ink);
    background:
        radial-gradient(circle at 8% 17%, rgba(255, 204, 216, .42), transparent 28rem),
        linear-gradient(180deg, #fff 0, #fff9fa 48%, #fff 100%);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.service-page > .navbar { display: none !important; }
.service-mobile-menu-button,
.service-mobile-menu,
.service-mobile-bottom-nav { display: none; }
.service-page .service-shared-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 84px;
    border-bottom: 1px solid rgba(108, 53, 56, .06);
    background: rgba(255, 255, 255, .96);
}
.service-page .service-shared-header .fk-shell {
    width: min(1320px, calc(100% - 72px));
    margin-inline: auto;
}
.service-page .service-shared-header .fk-header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 30px;
}
.service-page .service-shared-header .fk-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    width: 190px;
    min-width: 0;
}
.service-page .service-shared-header .fk-logo img {
    width: auto;
    max-width: 180px;
    max-height: 54px;
    object-fit: contain;
}
.service-page .service-shared-header .fk-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-left: 34px;
}
.service-page .service-shared-header .fk-nav a {
    position: relative;
    height: 45px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #65575a;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: color .2s, background .2s;
}
.service-page .service-shared-header .fk-nav a:hover {
    color: #e8192c;
    background: #fff1f2;
}
.service-page .service-shared-header .fk-nav a.is-active {
    color: #e8192c;
    background: #ffecee;
    font-weight: 750;
}
.service-page .service-shared-header .fk-header-actions {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-left: auto;
    padding-left: 25px;
}
.service-page .service-shared-header .fk-header-actions::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 7px;
    width: 1px;
    height: 24px;
    background: #eedfe1;
    transform: translateY(-50%);
}
.service-page .service-shared-header .fk-header-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    height: 44px;
    padding: 0 13px;
    border: 0;
    border-radius: 10px;
    color: #65575a;
    background: transparent;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s, color .2s, background .2s;
}
.service-page .service-shared-header .fk-header-actions a:first-child:hover {
    color: #e8192c;
    background: #fff1f2;
}
.service-page .service-shared-header .fk-header-actions a:last-child {
    min-width: 108px;
    padding: 0 24px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #ff4357, #e8192c);
    box-shadow: 0 8px 20px rgba(232,25,44,.16);
}

.service-page .navbar {
    min-height: 92px;
    padding: 0 !important;
    color: var(--service-ink);
    background: rgba(255, 255, 255, .94) !important;
    border-bottom: 1px solid rgba(239, 216, 222, .76);
    box-shadow: 0 10px 30px rgba(67, 30, 40, .035);
    backdrop-filter: blur(18px);
    position: relative;
    z-index: 20;
}

.service-page .navbar .container { max-width: 1360px; }
.service-page .navbar-brand img { width: auto !important; max-width: 168px; max-height: 58px; }
.service-page .navbar-nav { gap: 4px; }
.service-page .navbar .nav-link {
    min-width: 84px;
    height: 44px;
    margin: 0 !important;
    padding: 0 16px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #59474e !important;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    border-radius: 999px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}
.service-page .navbar .nav-link:hover { color: var(--service-rose) !important; background: var(--service-blush); transform: none; }
.service-page .navbar .btn.bg-white {
    padding: 12px 19px;
    color: var(--service-rose) !important;
    background: var(--service-blush) !important;
    border: 1px solid #ffd2dc;
    border-radius: 999px;
    box-shadow: none;
    font-weight: 700;
}
.service-page--query .navbar a[href="/orderquery"],
.service-page--complaint .navbar a[href="/complaint"],
.service-page--contact .navbar a[href="/contact"],
.service-page--faq .navbar a[href="/faq"] {
    color: #fff !important;
    background: linear-gradient(135deg, #f43a60, #df2349) !important;
    border-color: transparent !important;
    box-shadow: 0 10px 25px rgba(224, 35, 74, .18);
}

.service-page .main { overflow: hidden; }
.service-page .spotlight {
    min-height: 420px;
    background-image: none !important;
    background-color: transparent !important;
    position: relative;
    isolation: isolate;
}
.service-page .spotlight::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(112deg, rgba(255,255,255,.98) 8%, rgba(255,241,244,.94) 62%, rgba(255,227,234,.9)),
        repeating-linear-gradient(90deg, transparent 0 89px, rgba(222,54,89,.04) 90px);
}
.service-page .spotlight::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: 7%;
    top: -145px;
    z-index: -1;
    border: 1px solid rgba(232, 49, 87, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 58px rgba(255,255,255,.25), 0 0 0 118px rgba(235,62,96,.045);
}
.service-page .spotlight .mask { display: none; }
.service-page .spotlight-holder { padding: 78px 0 72px !important; }
.service-page .spotlight .container { max-width: 1240px; min-height: 265px; }
.service-page .spotlight .row { width: 100%; justify-content: flex-start !important; }
.service-page .spotlight .col-lg-7,
.service-page .spotlight .col-lg-8 { max-width: 760px; flex: 0 0 68%; text-align: left !important; }
.service-page .spotlight .heading {
    margin: 0 0 20px;
    color: var(--service-ink) !important;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.08;
    letter-spacing: -.045em;
    font-weight: 800 !important;
}
.service-page .spotlight .lead,
.service-page .spotlight p { color: var(--service-muted) !important; font-size: 17px; line-height: 1.85; }

.service-page--query .spotlight .col-lg-7::before,
.service-page--complaint .spotlight .col-lg-7::before,
.service-page--contact .spotlight .col-lg-7::before,
.service-page--faq .spotlight .col-lg-7::before {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    color: var(--service-rose);
    background: rgba(255,255,255,.72);
    border: 1px solid #ffd7df;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
}
.service-page--query .spotlight .col-lg-7::before { content: "ORDER  ·  SECURE LOOKUP"; }
.service-page--complaint .spotlight .col-lg-7::before { content: "SERVICE  ·  DISPUTE SUPPORT"; }
.service-page--contact .spotlight .col-lg-7::before { content: "CONTACT  ·  HUMAN SUPPORT"; }
.service-page--faq .spotlight .col-lg-7::before { content: "GUIDE  ·  QUICK ANSWERS"; }

.service-page .spotlight .input-group {
    max-width: 720px;
    margin-top: 30px;
    padding: 8px;
    background: rgba(255,255,255,.92);
    border: 1px solid #f0d7de;
    border-radius: 16px;
    box-shadow: var(--service-shadow);
}
.service-page .spotlight .form-control {
    min-height: 52px;
    padding: 0 18px;
    color: var(--service-ink) !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    font-size: 16px;
}
.service-page .spotlight .form-control::placeholder { color: #af9da3 !important; }
.service-page .spotlight .input-group .btn {
    min-width: 128px;
    margin: 0;
    color: #fff !important;
    background: linear-gradient(135deg, #f43a60, #df2349) !important;
    border: 0 !important;
    border-radius: 11px !important;
    box-shadow: 0 10px 22px rgba(225,36,75,.2);
    font-weight: 700;
}
.service-page .spotlight .input-group .btn:active { transform: translateY(1px); }
.service-page .spotlight .col-lg-3 { display: flex; justify-content: flex-end; }
.service-page .spotlight .position-relative {
    width: 250px;
    height: 250px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(239,51,88,.16);
    border-radius: 50%;
    box-shadow: 0 24px 60px rgba(140,55,75,.1), inset 0 0 0 28px rgba(255,240,243,.76);
}
.service-page .spotlight .position-relative::before {
    position: relative;
    z-index: 2;
    color: var(--service-ink);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .12em;
    text-align: center;
    white-space: pre-line;
}
.service-page--query .spotlight .position-relative::before { content: "01\A SECURE LOOKUP"; }
.service-page--complaint .spotlight .position-relative::before { content: "02\A SERVICE TRACK"; }
.service-page--contact .spotlight .position-relative::before { content: "03\A HUMAN SUPPORT"; }
.service-page--faq .spotlight .position-relative::before { content: "04\A KNOWLEDGE BASE"; }
.service-page .spotlight .position-relative::after {
    content: "";
    position: absolute;
    width: 92px;
    height: 2px;
    left: 50%;
    top: 50%;
    background: var(--service-rose);
    transform: translate(-50%, 29px);
}
.service-page .spotlight .position-relative img { display: none; }
.service-page--faq .spotlight .btn.bg-white {
    padding: 12px 18px;
    color: var(--service-rose) !important;
    background: #fff !important;
    border: 1px solid #f2cfd8;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(92,43,56,.08);
    font-weight: 700;
}

.service-page .slice { padding: 74px 0 104px !important; background: transparent !important; }
.service-page .slice > .container { max-width: 1240px; }
.service-page .slice .card,
.service-page .odlist .row,
.service-page .layui-tab {
    border: 1px solid var(--service-line) !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.94) !important;
    box-shadow: 0 18px 52px rgba(92,43,56,.075) !important;
}
.service-page .slice .card-body { padding: 34px 38px; }
.service-page .slice .heading { color: var(--service-ink) !important; font-weight: 800; letter-spacing: -.02em; }
.service-page .slice .form-control,
.service-page .slice select,
.service-page .slice textarea {
    min-height: 52px;
    color: var(--service-ink);
    background: #fff;
    border: 1px solid #eadde1;
    border-radius: 11px;
    box-shadow: none;
}
.service-page .slice textarea { min-height: 126px; padding: 14px 16px; }
.service-page .slice .input-group-text { min-width: 52px; justify-content: center; color: var(--service-rose); background: var(--service-blush) !important; border-color: #eadde1; }
.service-page .slice .btn:not(.bg-white) {
    min-height: 44px;
    border-radius: 10px;
    font-weight: 700;
}
.service-page #sub,
.service-page #complaintInfo {
    color: #fff !important;
    background: linear-gradient(135deg, #f43a60, #dc2147) !important;
    border: 0 !important;
    box-shadow: 0 12px 26px rgba(224,35,74,.18);
}

.service-page--contact .spotlight,
.service-page--faq .spotlight { min-height: 360px; }
.service-page--contact .spotlight-holder,
.service-page--faq .spotlight-holder { padding: 72px 0 60px !important; }
.service-page--contact .card,
.service-page--faq .card { overflow: hidden; transition: transform .24s ease, box-shadow .24s ease; }
.service-page--contact .card:hover,
.service-page--faq .card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(92,43,56,.12) !important; }
.service-page--contact .card-img-bg::after { background: linear-gradient(180deg, rgba(41,20,28,.02), rgba(41,20,28,.74)) !important; }

.service-page--contact .content {
    width: auto !important;
    max-width: 1240px;
    margin: 0 auto !important;
    padding: 78px 24px 104px;
}
.service-page--contact .content > .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin: 0 !important;
}
.service-page--contact .content .col-lg-4 {
    width: auto;
    max-width: none;
    padding: 0;
    margin: 0 !important;
}
.service-page--contact .content .card {
    min-height: 310px;
    margin: 0;
    color: var(--service-ink) !important;
    background: #fff !important;
    border: 1px solid var(--service-line) !important;
    border-radius: 18px;
    box-shadow: 0 20px 52px rgba(92,43,56,.08) !important;
}
.service-page--contact .content .card::before {
    content: "";
    position: absolute;
    width: 118px;
    height: 118px;
    right: -32px;
    top: -34px;
    border: 24px solid var(--service-blush);
    border-radius: 50%;
}
.service-page--contact .content .card-img-bg,
.service-page--contact .content .mask { display: none !important; }
.service-page--contact .content .card-body { position: relative; padding: 36px 34px !important; }
.service-page--contact .content .card-body > div { min-height: 190px !important; }
.service-page--contact .content .heading {
    margin-bottom: 28px !important;
    color: var(--service-ink) !important;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -.02em;
}
.service-page--contact .content .heading i {
    display: inline-flex;
    width: 46px;
    height: 46px;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
    color: var(--service-rose);
    background: var(--service-blush);
    border-radius: 12px;
    font-size: 20px;
    vertical-align: middle;
}
.service-page--contact .content p {
    color: var(--service-muted) !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    overflow-wrap: anywhere;
}
.service-page--contact .content .text-uppercase {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--service-rose) !important;
    font-size: 12px;
    font-weight: 800 !important;
    letter-spacing: .12em;
}
.service-page--contact main > div[style*="position: absolute"] {
    position: relative !important;
    right: auto !important;
    width: 1240px !important;
    max-width: calc(100% - 48px);
    margin: 24px auto 90px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--service-muted);
    background: var(--service-blush);
    border: 1px solid #f4d7df;
    border-radius: 16px;
}
.service-page--contact main > div[style*="position: absolute"] img { width: 76px !important; margin: 0 !important; border-radius: 10px; }
.service-page--contact main > div[style*="position: absolute"] p { margin: 0 !important; text-align: left !important; }

.service-page--faq .layui-tab { padding: 16px 22px 26px; }
.service-page--faq .content {
    width: auto !important;
    max-width: 1240px;
    margin: 0 auto !important;
    padding: 72px 24px 108px;
}
.service-page--faq .layui-tab {
    min-height: 320px;
    margin: 0;
    padding: 22px 28px 32px;
}
.service-page--faq .layui-tab-title { border-bottom-color: var(--service-line); }
.service-page--faq .layui-tab-title li { min-width: 116px; color: #736168; font-weight: 700; }
.service-page--faq .layui-tab-title .layui-this { color: var(--service-rose) !important; }
.service-page--faq .layui-tab-title .layui-this::after { border: 0 !important; border-bottom: 2px solid var(--service-rose) !important; }
.service-page--faq .layui-collapse { border: 0; }
.service-page--faq .layui-colla-item { margin-bottom: 10px; border: 1px solid var(--service-line); border-radius: 12px; overflow: hidden; }
.service-page--faq .layui-colla-title { min-height: 54px; padding: 6px 46px 6px 20px; color: var(--service-ink); background: #fffafb; font-weight: 700; }
.service-page--faq .layui-colla-content { padding: 18px 20px; color: var(--service-muted); line-height: 1.8; background: #fff; }
.service-page--faq .layui-tab-content > .layui-tab-item > ul { margin: 0; padding: 8px 0 0; list-style: none; }
.service-page--faq .layui-tab-content > .layui-tab-item > ul > li {
    position: relative;
    padding: 22px 54px 22px 22px;
    border-bottom: 1px solid #f2e6e9;
    cursor: pointer;
}
.service-page--faq .layui-tab-content > .layui-tab-item > ul > li::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 20px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: var(--service-rose);
    background: var(--service-blush);
    border-radius: 50%;
    font-size: 18px;
}
.service-page--faq .layui-tab-content > .layui-tab-item > ul > li > h3 { margin: 0; color: var(--service-ink); font-size: 17px; font-weight: 750; }
.service-page--faq .layui-tab-content > .layui-tab-item > ul > li > p { color: var(--service-muted); line-height: 1.8; }
.service-page--faq .service-article-body {
    display: none;
    padding: 16px 22px 8px;
    color: var(--service-muted);
    line-height: 1.85;
}
.service-page--faq .service-article-body h1,
.service-page--faq .service-article-body h2,
.service-page--faq .service-article-body h3,
.service-page--faq .service-article-body h4 {
    margin: 22px 0 10px;
    padding: 0;
    color: var(--service-ink);
    line-height: 1.45;
    cursor: default;
}
.service-page--faq .service-article-body p { display: block !important; padding: 5px 0; }
.service-page--faq .service-article-body ul,
.service-page--faq .service-article-body ol {
    margin: 10px 0;
    padding-left: 24px;
    list-style: initial;
}
.service-page--faq .service-article-body ol { list-style: decimal; }
.service-page--faq .service-article-body li {
    position: static;
    padding: 5px 0;
    color: var(--service-muted);
    background: transparent;
    border: 0;
    cursor: default;
}
.service-page--faq .service-article-body li::after { content: none; }
.service-page--faq .service-article-body li p {
    display: block !important;
    padding: 5px 0;
}

.service-page footer { color: #cdbec2; background: #2a171d !important; }
.service-page footer a { color: #eadfe2 !important; }

@media (prefers-reduced-motion: no-preference) {
    .service-page .spotlight .col-lg-7,
    .service-page .spotlight .col-lg-8 { animation: serviceRise .55s cubic-bezier(.2,.75,.3,1) both; }
    .service-page .slice > .container { animation: serviceRise .62s .08s cubic-bezier(.2,.75,.3,1) both; }
    @keyframes serviceRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
}

@media (max-width: 991px) {
    .service-page .navbar { min-height: 72px; }
    .service-page .navbar-collapse { background: #fff; padding: 18px; border: 1px solid var(--service-line); border-radius: 14px; box-shadow: var(--service-shadow); }
    .service-page .navbar-toggler { border-color: #eadde1; }
    .service-page .spotlight { min-height: auto; }
    .service-page .spotlight-holder { padding: 58px 0 50px !important; }
    .service-page .spotlight .col-lg-7,
    .service-page .spotlight .col-lg-8 { flex: 0 0 100%; max-width: 100%; }
    .service-page .spotlight .heading { font-size: 38px; }
    .service-page .slice { padding: 48px 0 72px !important; }
    .service-page--contact .content > .row { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    html, body.service-page {
        width: 100%;
        overflow-x: hidden;
    }

    body.service-page { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
    .service-page .service-shared-header { height: 62px; }
    .service-page .service-shared-header .fk-shell { width: calc(100% - 28px); }
    .service-page .service-shared-header .fk-header-inner { position: relative; gap: 12px; }
    .service-page .service-shared-header .fk-logo { width: 138px; }
    .service-page .service-shared-header .fk-logo img { max-width: 134px; max-height: 42px; }
    .service-page .service-shared-header .fk-nav,
    .service-page .service-shared-header .fk-header-actions { display: none; }

    .service-page .service-mobile-menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        margin-left: auto;
        padding: 0;
        color: var(--service-rose);
        background: var(--service-blush);
        border: 0;
        border-radius: 10px;
    }
    .service-page .service-mobile-menu-button span,
    .service-page .service-mobile-menu-button span::before,
    .service-page .service-mobile-menu-button span::after { width: 16px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s ease; }
    .service-page .service-mobile-menu-button span { position: relative; }
    .service-page .service-mobile-menu-button span::before,
    .service-page .service-mobile-menu-button span::after { content: ""; position: absolute; left: 0; }
    .service-page .service-mobile-menu-button span::before { top: -5px; }
    .service-page .service-mobile-menu-button span::after { top: 5px; }
    .service-page .service-mobile-menu-button[aria-expanded="true"] span { background: transparent; }
    .service-page .service-mobile-menu-button[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
    .service-page .service-mobile-menu-button[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
    .service-page .service-mobile-menu { position: absolute; z-index: 180; top: 68px; right: 0; left: 0; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; padding: 12px; border: 1px solid var(--service-line); border-radius: 15px; background: rgba(255,255,255,.98); box-shadow: 0 18px 45px rgba(76,25,34,.16); }
    .service-page .service-mobile-menu:not([hidden]) { display: grid; }
    .service-page .service-mobile-menu a { display: flex; align-items: center; justify-content: center; min-height: 42px; padding: 8px; color: #5f4d52; background: #fff8fa; border-radius: 10px; font-size: 12px; font-weight: 700; text-decoration: none; }
    .service-page .service-mobile-menu a.is-primary { grid-column: 1 / -1; color: #fff; background: linear-gradient(135deg,var(--service-rose),var(--service-rose-dark)); }

    .service-page .main,
    .service-page main,
    .service-page .spotlight,
    .service-page .slice,
    .service-page .content { width: 100%; max-width: 100%; }
    .service-page .spotlight { min-height: auto; }
    .service-page .spotlight::after { width: 260px; height: 260px; right: -120px; top: -90px; }
    .service-page .spotlight-holder,
    .service-page--contact .spotlight-holder,
    .service-page--faq .spotlight-holder { padding: 38px 0 34px !important; }
    .service-page .spotlight .container,
    .service-page .slice > .container { width: 100%; max-width: 100%; padding-right: 16px; padding-left: 16px; }
    .service-page .spotlight .row { width: auto; margin-right: 0; margin-left: 0; }
    .service-page .spotlight .col-lg-7,
    .service-page .spotlight .col-lg-8 { flex: 0 0 100%; width: 100%; max-width: 100%; padding: 0; }
    .service-page .spotlight .heading { margin-bottom: 14px; font-size: 31px; line-height: 1.22; overflow-wrap: anywhere; }
    .service-page .spotlight .lead,
    .service-page .spotlight p { font-size: 14px; line-height: 1.75; overflow-wrap: anywhere; }
    .service-page--query .spotlight .col-lg-7::before,
    .service-page--complaint .spotlight .col-lg-7::before,
    .service-page--contact .spotlight .col-lg-7::before,
    .service-page--faq .spotlight .col-lg-7::before { margin-bottom: 14px; padding: 6px 10px; font-size: 10px; letter-spacing: .1em; }
    .service-page .spotlight .input-group { width: 100%; max-width: 100%; margin-top: 22px; padding: 6px; flex-wrap: nowrap; }
    .service-page .spotlight .form-control { width: 1%; min-width: 0; min-height: 48px; padding: 0 12px; font-size: 14px; }
    .service-page .spotlight .input-group .btn { flex: 0 0 104px; min-width: 104px; min-height: 48px; padding: 0 12px; }
    .service-page .spotlight .col-lg-3 { display: none; }

    .service-page .slice { padding: 34px 0 54px !important; }
    .service-page .slice .card-body { padding: 22px 18px; }
    .service-page .slice .card,
    .service-page .odlist .row,
    .service-page .layui-tab { max-width: 100%; border-radius: 15px !important; }
    .service-page .slice .row { margin-right: 0; margin-left: 0; }
    .service-page .slice [class*="col-"] { max-width: 100%; padding-right: 0; padding-left: 0; }
    .service-page .slice img,
    .service-page .content img,
    .service-page .service-article-body img,
    .service-page iframe,
    .service-page video { max-width: 100% !important; height: auto; }
    .service-page table { width: 100% !important; max-width: 100%; table-layout: fixed; overflow-wrap: anywhere; }

    .service-page--contact .content,
    .service-page--faq .content { width: 100% !important; max-width: 100%; padding: 34px 16px 56px; }
    .service-page--contact .content > .row { grid-template-columns: minmax(0,1fr); gap: 16px; }
    .service-page--contact .content .card { min-height: 0; }
    .service-page--contact .content .card-body { padding: 26px 22px !important; }
    .service-page--contact .content .card-body > div { min-height: 0 !important; }
    .service-page--contact .content .heading { font-size: 22px; }
    .service-page--contact main > div[style*="position: absolute"] { width: calc(100% - 32px) !important; max-width: none; margin: 0 16px 48px; padding: 16px; flex-direction: column; align-items: flex-start; }

    .service-page--faq .layui-tab { min-height: 0; margin: 0; padding: 12px 12px 20px; }
    .service-page--faq .layui-tab-title { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); height: auto; white-space: normal; }
    .service-page--faq .layui-tab-bar { display: none; }
    .service-page--faq .layui-tab-title li { min-width: 0; padding: 0 6px; }
    .service-page--faq .layui-tab-content { padding: 10px 0; }
    .service-page--faq .layui-tab-content > .layui-tab-item > ul > li { padding: 18px 42px 18px 14px; }
    .service-page--faq .layui-tab-content > .layui-tab-item > ul > li::after { right: 10px; top: 15px; }
    .service-page--faq .layui-tab-content > .layui-tab-item > ul > li > h3 { font-size: 15px; overflow-wrap: anywhere; }
    .service-page--faq .service-article-body { padding: 14px 4px 6px; overflow-wrap: anywhere; }

    .service-page .service-mobile-bottom-nav { position: fixed; z-index: 150; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); height: calc(64px + env(safe-area-inset-bottom)); padding: 6px 18px env(safe-area-inset-bottom); border-top: 1px solid var(--service-line); background: rgba(255,255,255,.97); box-shadow: 0 -10px 28px rgba(71,25,29,.08); }
    .service-page .service-mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-width: 0; color: #9c898c; font-size: 9px; text-decoration: none; }
    .service-page .service-mobile-bottom-nav a > span { display: flex; align-items: center; justify-content: center; width: 26px; height: 25px; border-radius: 8px; font-size: 15px; }
    .service-page .service-mobile-bottom-nav a > strong { font-weight: 600; }
    .service-page .service-mobile-bottom-nav a.is-query { color: var(--service-rose-dark); }
    .service-page .service-mobile-bottom-nav a.is-query > span { width: 48px; height: 48px; margin-top: -25px; color: #fff; background: linear-gradient(135deg,var(--service-rose),var(--service-rose-dark)); border: 5px solid #fff; border-radius: 50%; box-shadow: 0 8px 22px rgba(232,25,44,.28); font-size: 20px; }
    .service-page .layui-layer-setwin { top: 10px; right: 10px; }
    .service-page .layui-layer-setwin .layui-layer-close2 { top: 0; right: 0; }
}
