:root {
    --bg: #f3f8ff;
    --bg-alt: #e6f0fb;
    --ink: #0d2b4a;
    --muted: #4d6b8a;
    --line: #c9dcf0;
    --paper: #ffffff;
    --accent: #1a73e8;
    --accent-dark: #0d5ec4;
    --gold: #3d8bfd;
    --shadow: 0 18px 50px rgba(26, 115, 232, 0.10);
    --radius: 18px;
    --max: 1120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", sans-serif;
    color: var(--ink);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.7;
}

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

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

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(243, 248, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #fff;
    font-family: "Noto Serif SC", serif;
    font-weight: 700;
    font-size: 22px;
    border-radius: 10px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 17px;
}

.brand-text em {
    font-style: normal;
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.08em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 15px;
}

.nav a:hover {
    color: var(--accent);
}

.nav-cta {
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff !important;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 10px;
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
}

.hero {
    padding: 72px 0 48px;
}

.hero-grid,
.split,
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 0.12em;
}

h1,
h2,
h3 {
    font-family: "Noto Serif SC", serif;
    line-height: 1.35;
    margin: 0 0 14px;
}

h1 {
    font-size: clamp(22px, 3.2vw, 32px);
}

h2 {
    font-size: clamp(20px, 2.4vw, 26px);
}

h3 {
    font-size: 18px;
}

.lead,
.section-head p,
.footer-desc {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.hero-actions,
.hero-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-ghost {
    border-color: var(--line);
    background: transparent;
}

.btn-block {
    width: 100%;
}

.btn-wechat {
    background: #07c160;
    color: #fff;
    border-color: #07c160;
}

.btn-wechat:hover {
    background: #06ad56;
}

.wechat-card {
    margin-top: 24px;
    padding: 24px;
    background: linear-gradient(180deg, #e8f8ee 0%, #ffffff 100%);
    border: 2px solid #07c160;
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(7, 193, 96, 0.12);
}

.wechat-kicker {
    margin: 0 0 6px;
    color: #07c160;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.wechat-id {
    margin: 0 0 16px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #0d2b4a;
    font-family: "Noto Sans SC", sans-serif;
    word-break: break-all;
}

.wechat-id-sm {
    font-size: 22px;
    margin: 8px 0 16px;
    text-align: center;
}

.wechat-hint {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.footer-wechat strong {
    color: #fff;
    font-size: 16px;
}

.hero-stats {
    padding: 0;
    margin: 36px 0 0;
}

.hero-stats div {
    min-width: 120px;
}

.hero-stats dt {
    font-size: 24px;
    font-family: "Noto Serif SC", serif;
}

.hero-stats dd {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.hero-card,
.service-card,
.price-card,
.case-card,
.news-card,
.contact-form {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 32px;
}

.card-kicker {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 13px;
}

.check-list,
.advantage-list,
.price-card ul,
.footer-grid ul,
.contact-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.check-list li,
.price-card li,
.advantage-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid var(--line);
}

.check-list li::before,
.price-card li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    position: absolute;
    left: 0;
    top: 18px;
}

.tiny,
.form-note {
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.section {
    padding: 72px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-head {
    max-width: 640px;
    margin-bottom: 36px;
}

.card-grid,
.price-grid,
.case-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.package-group + .package-group,
.service-group + .service-group {
    margin-top: 40px;
}

.package-group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    font-size: 17px;
    font-weight: 700;
}

.package-group-title::before {
    content: "";
    width: 4px;
    height: 18px;
    border-radius: 999px;
    background: var(--accent);
}

.service-card,
.price-card,
.case-card,
.news-card {
    padding: 28px;
}

.icon {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.advantage-list li {
    padding-left: 0;
}

.advantage-list strong {
    display: block;
    font-size: 17px;
}

.advantage-list span {
    color: var(--muted);
    font-size: 15px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    list-style: none;
    padding: 0;
    counter-reset: step;
}

.steps li {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    counter-increment: step;
}

.steps li::before {
    content: "0" counter(step);
    color: var(--gold);
    font-weight: 700;
}

.price-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.price-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.price-card .card-kicker {
    margin-bottom: 6px;
}

.price-card ul {
    flex: 1;
}

.price-card .btn {
    margin-top: auto;
}

.price-card.featured {
    position: relative;
    border-color: var(--accent);
    box-shadow: 0 18px 50px rgba(26, 115, 232, 0.16);
    padding-top: 36px;
}

.badge {
    position: absolute;
    top: 14px;
    right: 14px;
    margin: 0;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
}

.price {
    font-size: 28px;
    font-family: "Noto Serif SC", serif;
    margin: 0 0 16px;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.price span {
    font-size: 14px;
    color: var(--muted);
    margin-left: 6px;
    font-family: "Noto Sans SC", sans-serif;
    font-weight: 500;
    letter-spacing: 0;
}

.price-talk {
    font-size: 24px;
}

.tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(26, 115, 232, 0.10);
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 8px;
}

.news-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
}

.news-meta .tag {
    margin: 0;
    flex: none;
}

.news-meta time {
    color: var(--muted);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}

.news-meta time::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--line);
    vertical-align: middle;
}

.news-card h2,
.news-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.45;
    transition: color 0.18s ease;
}

.news-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 18px;
    flex: 1;
}

.news-card .card-link {
    margin-top: auto;
}

.news-card:hover {
    transform: translateY(-3px);
}

.news-card:hover h2,
.news-card:hover h3 {
    color: var(--accent);
}

.news-list {
    display: grid;
    gap: 18px;
}

.news-list .news-card {
    padding: 26px 30px;
}

.news-list .news-card h2 {
    font-size: 21px;
}

.news-list .news-card p {
    max-width: 62ch;
    margin-bottom: 14px;
}

.news-empty {
    padding: 40px 0;
    color: var(--muted);
    text-align: center;
}

.article-meta {
    display: inline-block;
    color: var(--muted);
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    margin: 0 0 20px;
}

.section-more {
    margin: 28px 0 0;
}

.news-pagination {
    margin-top: 36px;
}

.news-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.news-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    font-size: 14px;
    font-weight: 600;
}

.news-pagination .page-numbers.current,
.news-pagination a.page-numbers:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.article-hero {
    padding: 36px 0 26px;
}

.article-head {
    max-width: 780px;
}

.article-head h1 {
    font-size: clamp(21px, 3vw, 30px);
    margin: 0 0 16px;
}

.article-head .lead {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
}

.article-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 13px;
}

.article-meta-bar .tag {
    margin: 0;
}

.article-meta-bar time,
.article-meta-bar .read-time {
    display: inline-flex;
    align-items: center;
    font-variant-numeric: tabular-nums;
}

.article-meta-bar time::before,
.article-meta-bar .read-time::before {
    content: "";
    width: 4px;
    height: 4px;
    margin-right: 12px;
    border-radius: 50%;
    background: var(--line);
}

.article-section {
    padding-top: 8px;
}

.article-body {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 36px 40px 32px;
}

.article-body > p,
.article-body .detail-block p {
    font-size: 16.5px;
    line-height: 1.9;
    color: var(--ink);
    margin: 0 0 18px;
}

.article-body > p:last-child,
.article-body .detail-block p:last-child {
    margin-bottom: 0;
}

.article-body .detail-block {
    margin: 0 0 32px;
    padding: 0;
    border-bottom: 0;
}

.article-body .detail-block:last-child {
    margin-bottom: 0;
}

.article-body > h2,
.article-body .detail-block h2 {
    position: relative;
    font-size: 21px;
    line-height: 1.4;
    padding-left: 16px;
    margin: 0 0 14px;
}

.article-body > h2::before,
.article-body .detail-block h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 4px;
    height: 1em;
    border-radius: 999px;
    background: var(--accent);
}

.article-body > h3 {
    font-size: 17px;
    margin: 26px 0 10px;
}

.article-body > ul,
.article-body > ol {
    padding-left: 22px;
    margin: 0 0 20px;
}

.article-body > ul li,
.article-body > ol li {
    font-size: 16.5px;
    line-height: 1.9;
    margin-bottom: 8px;
}

.article-body blockquote {
    margin: 0 0 20px;
    padding: 16px 22px;
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    background: var(--bg);
    color: var(--muted);
}

.article-body img {
    border-radius: 12px;
    margin: 8px 0 20px;
}

.article-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
}

.news-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(26, 115, 232, 0.08);
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}

a.news-tag:hover {
    background: var(--accent);
    color: #fff;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed var(--line);
}

.article-tags-label {
    color: var(--muted);
    font-size: 13px;
    margin-right: 4px;
}

.article-pager {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.article-pager a {
    display: block;
    padding: 16px 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.article-pager a:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.article-pager .pager-label {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.08em;
}

.article-pager .pager-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

.article-pager .pager-next {
    text-align: right;
}

.article-pager a:only-child {
    grid-column: 1 / -1;
}

.article-back {
    margin: 20px 0 0;
    text-align: center;
}

.article-back .btn {
    min-height: 40px;
}

.article-cta .btn + .btn {
    margin-top: 10px;
}

.related-news a {
    font-weight: 500;
}

.faq-list details {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.faq-list details[open] {
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(26, 115, 232, 0.10);
}

.faq-list summary {
    position: relative;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    padding: 17px 52px 17px 20px;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
    transform: translateY(-30%) rotate(225deg);
}

.faq-list p {
    margin: 0;
    padding: 0 20px 18px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
}

.contact-form {
    padding: 28px;
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    background: #fff;
}

.site-footer {
    background: #0a2a4a;
    color: #e6f0fb;
    padding-top: 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 28px;
    padding-bottom: 36px;
}

.footer-grid h3 {
    font-size: 16px;
}

.footer-grid p,
.footer-grid li {
    color: #b7d0ea;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    font-size: 13px;
    color: #8fb4d6;
}

.beian-link {
    color: #8fb4d6;
    margin-left: 10px;
}

.beian-link:hover {
    color: #fff;
}

.footer-brand .brand-mark {
    background: #fff;
    color: var(--accent);
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    color: inherit;
}

.service-card:hover,
.news-card:hover {
    border-color: var(--accent);
}

.card-link {
    display: inline-block;
    margin-top: auto;
    padding-top: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
}

a.service-card {
    text-decoration: none;
}

.service-hero {
    padding: 48px 0 30px;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--line);
}

.service-hero h1 {
    font-size: clamp(20px, 2.8vw, 28px);
    margin: 0 0 12px;
}

.service-hero .lead {
    font-size: 16px;
    max-width: 46em;
    margin: 0;
}

.service-layout {
    padding-top: 8px;
}

@media (min-width: 961px) {
    .service-aside {
        position: sticky;
        top: 96px;
    }
}

.crumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 13px;
}

.service-layout {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr;
    gap: 32px;
    align-items: start;
}

.service-main {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 38px 40px 34px;
}

.article-page .service-main {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.detail-block {
    margin: 0 0 30px;
    padding: 0 0 30px;
    border-bottom: 1px dashed var(--line);
}

.detail-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.detail-block h2 {
    position: relative;
    font-size: 21px;
    line-height: 1.4;
    padding-left: 16px;
    margin: 0 0 16px;
}

.detail-block h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 4px;
    height: 1em;
    border-radius: 999px;
    background: var(--accent);
}

.detail-block p,
.detail-block li {
    font-size: 16px;
    line-height: 1.9;
}

.detail-block p {
    margin: 0;
    color: var(--ink);
}

.service-main .detail-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-main .detail-block ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.service-main .detail-block ul li:last-child {
    margin-bottom: 0;
}

.service-main .detail-block ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--accent);
    transform: rotate(45deg);
}

.detail-steps {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.detail-steps li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--bg);
    box-shadow: none;
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.detail-steps li:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.detail-steps li::before {
    content: counter(step, decimal-leading-zero);
    flex: none;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(26, 115, 232, 0.10);
    color: var(--accent);
    font-family: "Noto Sans SC", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.detail-steps h3 {
    font-family: "Noto Sans SC", sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    padding-top: 4px;
}

.related {
    margin-top: 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
}

.related h3 {
    position: relative;
    font-size: 17px;
    line-height: 1.4;
    padding-left: 14px;
    margin: 0 0 12px;
}

.related h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 3px;
    height: 1em;
    border-radius: 999px;
    background: var(--accent);
}

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

.related li {
    border-bottom: 1px solid var(--line);
    padding: 11px 0 11px 16px;
    position: relative;
}

.related li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.related li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.15em;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: var(--accent);
    transform: rotate(45deg);
}

.related a {
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    .hero-grid,
    .split,
    .contact-grid,
    .card-grid,
    .price-grid,
    .case-grid,
    .news-grid,
    .steps,
    .footer-grid,
    .service-layout,
    .detail-steps {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
        position: absolute;
        inset: 76px 20px auto;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .article-pager .pager-next,
    .article-pager .pager-prev {
        text-align: left;
    }

}

@media (max-width: 640px) {
    .service-hero {
        padding: 32px 0 22px;
    }

    .service-main {
        padding: 24px 20px;
    }

    .detail-block h2 {
        font-size: 19px;
    }

    .detail-steps li {
        padding: 16px 16px;
    }

    .article-body {
        padding: 24px 20px;
    }

    .article-body > p,
    .article-body .detail-block p,
    .article-body > ul li,
    .article-body > ol li {
        font-size: 16px;
    }

    .article-body > h2,
    .article-body .detail-block h2 {
        font-size: 19px;
    }

    .article-section {
        padding-top: 0;
    }
}
