/* ===== 设计系统：深蓝 + 青绿强调（全新官网风格） ===== */
:root {
    --color-primary: #0f2942;
    --color-primary-light: #1a3d5c;
    --color-accent: #14b8a6;
    --color-accent-dark: #0d9488;
    --color-highlight: #f59e0b;
    --color-text: #334155;
    --color-text-light: #64748b;
    --color-bg: #f8fafc;
    --color-surface: #ffffff;
    --color-border: #e2e8f0;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 3px rgba(15, 41, 66, 0.06);
    --shadow-md: 0 4px 14px rgba(15, 41, 66, 0.08);
    --wrap-width: 1140px;
    --header-h: 64px;
    --transition: 0.25s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

body.nav-locked {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary);
}

.wrap {
    width: 100%;
    max-width: var(--wrap-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶栏 */
.site-topbar {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    padding: 8px 0;
    text-align: center;
}

/* 页头导航 */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 16px;
}

.site-brand {
    flex-shrink: 0;
    text-decoration: none;
}

.site-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.02em;
}

.site-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 2px;
    list-style: none;
}

.site-nav a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav .z236e6this a,
.site-nav li.z236e6this a {
    color: var(--color-accent-dark);
    background: rgba(20, 184, 166, 0.1);
}

.site-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    cursor: pointer;
}

.site-menu-toggle span {
    display: block;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
    transition: var(--transition);
}

.site-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}
.site-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav-mask {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 41, 66, 0.45);
    z-index: 998;
}

.site-nav-mask.is-visible {
    display: block;
}

/* 按钮 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-main {
    background: var(--color-accent);
    color: #fff;
}

.btn-main:hover {
    background: var(--color-accent-dark);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-border);
}

.btn-ghost:hover {
    border-color: var(--color-accent);
    color: var(--color-accent-dark);
}

.btn-block {
    width: 100%;
}

/* 首页 Hero */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 55%, #1e4d6b 100%);
    color: #fff;
    padding: 48px 0 56px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
    padding: 4px 10px;
    border: 1px solid rgba(20, 184, 166, 0.4);
    border-radius: 20px;
}

.hero h1 {
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.35;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-lead {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.hero-lead strong {
    color: #99f6e4;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.hero .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    list-style: none;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-metrics strong {
    display: block;
    font-size: 20px;
    color: var(--color-highlight);
}

.hero-metrics span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    max-width: 280px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* 通用区块 */
.section {
    padding: 52px 0;
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px;
}

.section-head h2 {
    font-size: clamp(22px, 3vw, 28px);
    color: var(--color-primary);
    margin-bottom: 10px;
}

.section-head p {
    font-size: 15px;
    color: var(--color-text-light);
}

/* 服务卡片 */
.section-services {
    background: var(--color-surface);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.svc-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}

.svc-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.svc-card-icon {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: var(--color-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
}

.svc-card h3 {
    font-size: 17px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.svc-card p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 14px;
}

.svc-link {
    font-size: 14px;
    font-weight: 600;
}

/* 定位找人 */
.section-locate {
    background: var(--color-bg);
}

.locate-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: stretch;
}

.locate-content,
.locate-panel {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px;
    background: var(--color-surface);
}

.locate-content h2 {
    font-size: 22px;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.locate-list {
    margin-top: 16px;
    padding-left: 20px;
    color: var(--color-text-light);
}

.locate-list li {
    margin-bottom: 8px;
}

.locate-panel {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.92);
    border-color: var(--color-primary);
}

.locate-panel h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--color-highlight);
}

/* 知识区 */
.section-knowledge {
    background: var(--color-surface);
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.know-block {
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg);
}

.know-block h3 {
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.know-block p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* 接单步骤 */
.section-methods {
    background: var(--color-bg);
}

.method-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    counter-reset: none;
}

.method-steps li {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--color-accent);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    font-size: 16px;
}

.method-steps h4 {
    font-size: 15px;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.method-steps p {
    font-size: 13px;
    color: var(--color-text-light);
}

/* FAQ */
.section-faq {
    background: var(--color-surface);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--color-bg);
}

.faq-item summary {
    padding: 16px 18px;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 18px 16px;
    font-size: 14px;
    color: var(--color-text-light);
}

/* 首页文章 */
.section-articles {
    background: var(--color-bg);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.article-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.article-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.article-card-thumb {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #e2e8f0;
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-body {
    padding: 12px 14px 14px;
}

.article-card-body h3 {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-body h3 a {
    color: var(--color-primary);
}

.article-card-body time {
    font-size: 12px;
    color: var(--color-text-light);
}

/* 联系 */
.section-contact {
    background: var(--color-primary);
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-intro h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.contact-intro p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.contact-points {
    list-style: none;
}

.contact-points li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.contact-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.contact-form {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 24px;
    color: var(--color-text);
}

.form-row {
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-primary);
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
}

.form-row textarea {
    min-height: 100px;
    resize: vertical;
}

/* 页脚 */
.site-footer {
    background: #0a1f33;
    color: rgba(255, 255, 255, 0.85);
    padding: 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 28px;
    padding-bottom: 32px;
}

.footer-brand h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.footer-brand p,
.footer-nav a,
.footer-extra li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav h3,
.footer-extra h3 {
    font-size: 14px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.footer-nav ul,
.footer-extra ul {
    list-style: none;
}

.footer-nav li,
.footer-extra li {
    margin-bottom: 8px;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
    color: var(--color-accent);
}

.friend-links {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 14px 0;
}

.friend-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    list-style: none;
    justify-content: center;
}

.friend-links a {
    font-size: 12px;
    color: var(--color-text-light);
}

/* ========== 列表页 / 内容页 ========== */
.page-inner-banner {
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    padding: 32px 0;
}

.page-inner-banner h1 {
    font-size: clamp(20px, 3vw, 26px);
    margin-bottom: 8px;
    line-height: 1.4;
}

.page-breadcrumb {
    font-size: 13px;
    opacity: 0.85;
}

.page-breadcrumb a {
    color: #99f6e4;
}

.breadcrumb-sep {
    margin: 0 8px;
    opacity: 0.5;
}

.page-body {
    padding: 36px 0 48px;
}

.page-body-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 28px;
    align-items: start;
}

.page-main-col {
    min-width: 0;
}

/* 列表 */
.list-feed {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.list-item {
    display: flex;
    gap: 18px;
    padding: 18px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.list-item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}

.list-item-thumb {
    flex: 0 0 180px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #e2e8f0;
}

.list-item-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.list-item-body {
    flex: 1;
    min-width: 0;
}

.list-item-title {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.list-item-title a {
    color: var(--color-primary);
}

.list-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.list-item-desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* 分页 */
.pagebar {
    margin-top: 28px;
    padding: 14px 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.pagebar .pagelist,
.pagebar ul.pagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.pagebar li {
    display: inline-block;
}

.pagebar a,
.pagebar span {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    text-decoration: none;
}

.pagebar a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

/* 侧栏 */
.page-aside {
    position: sticky;
    top: calc(var(--header-h) + 12px);
}

.aside-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.aside-box-title {
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: var(--color-primary);
}

.aside-list {
    list-style: none;
    max-height: 480px;
    overflow-y: auto;
}

.aside-list li {
    border-bottom: 1px solid var(--color-border);
}

.aside-list li:last-child {
    border-bottom: none;
}

.aside-link {
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    color: var(--color-text);
    text-decoration: none;
    transition: background var(--transition);
}

.aside-link:hover {
    background: var(--color-bg);
}

.aside-thumb {
    flex: 0 0 56px;
    border-radius: 4px;
    overflow: hidden;
    background: #e2e8f0;
}

.aside-thumb img {
    width: 56px;
    height: 42px;
    object-fit: cover;
}

.aside-info {
    flex: 1;
    min-width: 0;
}

.aside-title {
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aside-date {
    font-size: 11px;
    color: var(--color-text-light);
    margin-top: 4px;
}

/* 内容页 */
.article-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 24px;
}

.article-box-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 13px;
    color: var(--color-text-light);
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.article-box-meta a {
    color: var(--color-accent-dark);
}

.article-cover {
    margin-bottom: 20px;
    text-align: center;
}

.article-cover img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin: 0 auto;
}

.article-cover:empty {
    display: none;
}

.article-cover img[src=""] {
    display: none;
}

.article-rich {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    word-break: break-word;
}

.article-rich img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.article-gallery {
    margin: 16px 0;
    text-align: center;
}

.article-gallery img {
    max-width: 100%;
    border-radius: var(--radius-sm);
}

.article-gallery figcaption {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 8px;
}

.z236e6diyfield {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed var(--color-border);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin-top: 20px;
}

.z236e6tagitem a {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    color: var(--color-text);
}

.z236e6tagitem a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.article-prenext {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--color-border);
    font-size: 14px;
}

.prenext-prev,
.prenext-next {
    flex: 1;
    min-width: 0;
}

.prenext-next {
    text-align: right;
}

.related-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 22px;
}

.related-box h3 {
    font-size: 17px;
    color: var(--color-primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-accent);
}

.related-feed {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.related-row {
    display: flex;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-border);
}

.related-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-row-thumb {
    flex: 0 0 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.related-row-thumb img {
    width: 100px;
    height: 68px;
    object-fit: cover;
}

.related-row h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.related-row h4 a {
    color: var(--color-primary);
}

.related-row p {
    font-size: 13px;
    color: var(--color-text-light);
}

.clear {
    clear: both;
}

/* ========== 响应式 ========== */
@media (max-width: 1100px) {
    .article-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .site-menu-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        background: var(--color-surface);
        padding: 72px 16px 24px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
        transition: right var(--transition);
        z-index: 999;
        overflow-y: auto;
    }

    .site-nav.is-open {
        right: 0;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav a {
        padding: 12px 14px;
        border-bottom: 1px solid var(--color-border);
        border-radius: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions,
    .hero-metrics {
        justify-content: center;
    }

    .hero-visual img {
        max-width: 200px;
    }

    .service-cards,
    .knowledge-grid,
    .method-steps,
    .contact-grid,
    .locate-grid,
    .footer-grid,
    .page-body-grid {
        grid-template-columns: 1fr;
    }

    .page-aside {
        position: static;
    }

    .article-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .list-item {
        flex-direction: column;
    }

    .list-item-thumb {
        flex: none;
        width: 100%;
    }

    .list-item-thumb img {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 36px 0;
    }

    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-prenext {
        flex-direction: column;
    }

    .prenext-next {
        text-align: left;
    }

    .article-box {
        padding: 18px 16px;
    }

    .pagebar .pagelist,
    .pagebar ul.pagelist {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .wrap {
        padding: 0 14px;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 32px 0 40px;
    }

    .svc-card,
    .know-block,
    .method-steps li {
        padding: 16px;
    }
}

@media (hover: none) {
    .btn,
    .site-nav a {
        min-height: 44px;
    }
}
