﻿/* service page */
.neibanner.neibanner-services {
    height: clamp(300px, 34vw, 480px);
    overflow: hidden;
}
.neibanner.neibanner-services img {
    object-fit: cover;
    object-position: center center;
}
@media (max-width: 991.98px) {
    .neibanner.neibanner-services {
        height: clamp(240px, 42vw, 360px);
    }
    .neibanner.neibanner-services img {
        object-position: 36% center;
    }
}
@media (max-width: 575.98px) {
    .neibanner.neibanner-services {
        height: 220px;
    }
    .neibanner.neibanner-services img {
        object-position: 30% center;
    }
}

/* 内页面包屑：浅色 Banner 上提高对比度 */
.neibanner .neinav {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.55) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 52px;
}
.neibanner .neinav .neiposition {
    gap: 4px;
}
.neibanner .neinav .neiposition a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.neibanner .neinav .neiposition a:hover {
    color: #dbeafe;
}
.neibanner .neinav .neiposition i.fa,
.neibanner .neinav .neiposition i.neiposition-icon {
    color: rgba(255, 255, 255, 0.92);
}
.neibanner .neinav .neiposition .neiposition-sep {
    display: inline-flex;
    align-items: center;
    margin: 0 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}
.neibanner .neinav .neiposition .neiposition-sep i {
    font-size: 12px;
}

/* 服务项目独立内页导航 */
.neinav.neinav-services .neinav-services-list li a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 500;
    padding: 0 14px;
    border-radius: 40px;
    line-height: 35px;
    transition: all 0.2s ease;
}
.neinav.neinav-services .neinav-services-list li a:hover,
.neinav.neinav-services .neinav-services-list li.is-active a {
    background-color: var(--primary-color);
    color: #fff;
}
.neinav-services-mobile {
    background: #fff;
    border-bottom: 1px solid #e8ecf3;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}
.neinav-services-mobile .container {
    padding-top: 10px;
    padding-bottom: 10px;
}
.neinav-services-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.neinav-services-scroll::-webkit-scrollbar {
    display: none;
}
.neinav-services-scroll a {
    flex: 0 0 auto;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(36, 96, 242, 0.22);
    color: #2460f2;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.neinav-services-scroll a:hover,
.neinav-services-scroll a.is-active {
    background: #2460f2;
    border-color: #2460f2;
    color: #fff;
}

/* 服务项目长页 */
.about-services-hub {
    padding: 56px 0 20px;
    background: #f5f7fa;
}
.about-services-hub .service-hub-hero {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 36px;
    padding: 0 16px;
}
.about-services-hub .service-hub-hero h1 {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.04em;
}
.about-services-hub .service-hub-hero h2 {
    margin: 14px 0 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #666;
}
.about-services-hub .service-hub-hero p {
    margin: 14px 0 0;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}
.about-services-hub .service-hub-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 0 12px;
}
.about-services-hub .service-hub-nav a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(36, 96, 242, 0.25);
    background: #fff;
    color: #2460f2;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.about-services-hub .service-hub-nav a:hover {
    background: #2460f2;
    color: #fff;
    border-color: #2460f2;
}
.about-service-block {
    scroll-margin-top: 150px;
    padding: 48px 0;
}
.about-service-block:nth-child(even) {
    background: #fff;
}
.about-service-block:nth-child(odd) {
    background: #f8faff;
}
.about-service-block .service-block-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.about-service-block.is-reverse .service-block-inner {
    flex-direction: row-reverse;
}
.about-service-block .service-block-main {
    flex: 1;
    min-width: 0;
    padding-top: 8px;
}
.about-service-block .service-block-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2460f2, #4f8cff);
    color: #fff;
    font-size: 28px;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(36, 96, 242, 0.22);
}
.about-service-block .service-block-main h3 {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 700;
    color: #222;
}
.about-service-block .service-block-lead {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.85;
    color: #555;
}
.about-service-block .service-block-points {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}
.about-service-block .service-block-points li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}
.about-service-block .service-block-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2460f2;
}
.about-service-block .service-block-cta {
    display: inline-block;
    padding: 11px 28px;
    border-radius: 6px;
    background: #2460f2;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}
.about-service-block .service-block-cta:hover {
    background: #1a4fd6;
    box-shadow: 0 8px 20px rgba(36, 96, 242, 0.28);
}
.service-focus-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}
.service-focus-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e8ecf3;
    box-shadow: 0 4px 14px rgba(36, 96, 242, 0.05);
}
.about-service-block:nth-child(even) .service-focus-item {
    background: #f8faff;
}
.service-focus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #e8f0ff;
    color: #2460f2;
    font-size: 15px;
}
.service-focus-item h4 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}
.service-focus-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: #777;
}

/* 企业代运营 - 成效趋势卡 */
.operation-trend-card {
    margin-top: 22px;
    padding: 22px 22px 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e8ecf3;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}
.operation-trend-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.operation-trend-head h4 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
    color: #222;
}
.operation-trend-sub {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: #777;
    max-width: 280px;
}
.operation-trend-legend {
    display: flex;
    flex-shrink: 0;
    gap: 12px;
    font-size: 12px;
    color: #666;
}
.operation-trend-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.operation-trend-legend span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 2px;
}
.legend-before::before {
    background: #8b9bb5;
}
.legend-after::before {
    background: #2460f2;
}
.operation-trend-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}
.operation-trend-kpi {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 6px;
    border-radius: 8px;
    background: #f6f9ff;
    border: 1px solid #e8ecf3;
    text-align: center;
}
.operation-trend-kpi i {
    font-size: 16px;
    color: #2460f2;
}
.operation-trend-kpi span {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}
.operation-trend-kpi em {
    font-size: 11px;
    font-style: normal;
    color: #888;
}
.operation-trend-chart {
    position: relative;
    padding: 10px 4px 4px 36px;
}
.operation-trend-gridlines {
    position: absolute;
    left: 36px;
    right: 6px;
    top: 10px;
    bottom: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}
.operation-trend-gridlines span {
    display: block;
    height: 1px;
    background: #e8edf5;
}
.operation-trend-axis {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 11px;
    color: #888;
    white-space: nowrap;
}
.operation-trend-bars {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    align-items: end;
    height: 170px;
    padding: 0 6px 22px;
    border-left: 1px solid #d8e0ed;
    border-bottom: 1px solid #d8e0ed;
}
.operation-trend-group {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    height: 100%;
    position: relative;
}
.operation-trend-group > span {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #888;
    white-space: nowrap;
}
.operation-trend-bar {
    width: 14px;
    height: var(--h);
    border-radius: 4px 4px 0 0;
    min-height: 6px;
}
.operation-trend-bar.is-traffic {
    background: linear-gradient(180deg, #9aa8be, #7d8da6);
}
.operation-trend-bar.is-lead {
    background: linear-gradient(180deg, #4f8cff, #2460f2);
}
.operation-trend-progress {
    display: grid;
    gap: 10px;
    margin-top: 28px;
    padding-top: 14px;
    border-top: 1px dashed #e8ecf3;
}
.operation-trend-progress-item {
    display: grid;
    gap: 6px;
}
.operation-trend-progress-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
}
.operation-trend-progress-head span {
    font-weight: 600;
    color: #333;
}
.operation-trend-progress-head em {
    font-style: normal;
    font-size: 11px;
    color: #999;
}
.operation-trend-progress-bar {
    height: 8px;
    border-radius: 999px;
    background: #eef2f8;
    overflow: hidden;
}
.operation-trend-progress-bar i {
    display: block;
    height: 100%;
    width: var(--w);
    border-radius: 999px;
    background: linear-gradient(90deg, #4f8cff, #2460f2);
}
.operation-trend-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}
.operation-trend-metric {
    padding: 12px 14px;
    border-radius: 8px;
    background: #f4f7fc;
    border: 1px solid #e8ecf3;
}
.operation-trend-metric strong {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    color: #2460f2;
}
.operation-trend-metric span {
    font-size: 12px;
    line-height: 1.55;
    color: #666;
}
.operation-trend-note {
    margin: 14px 0 0;
    font-size: 11px;
    line-height: 1.5;
    color: #999;
    text-align: center;
}

/* 企业代运营 - 右侧补充 */
#service-3 .service-block-side.is-operation-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#service-3 .service-sub-grid-compact .service-sub-card h4 {
    display: flex;
    align-items: center;
    gap: 8px;
}
#service-3 .service-sub-grid-compact .service-sub-card h4 i {
    color: #2460f2;
    font-size: 14px;
}
.operation-rhythm-card,
.operation-deliver-card {
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 12px;
    padding: 18px 18px 16px;
    box-shadow: 0 6px 18px rgba(36, 96, 242, 0.05);
}
.operation-rhythm-card h4,
.operation-deliver-card h4 {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}
.operation-rhythm-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.operation-rhythm-list li {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    gap: 2px 10px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f8faff;
    border: 1px solid #e8ecf3;
}
.operation-rhythm-list li span {
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 11px;
    font-weight: 700;
    color: #2460f2;
    text-align: center;
    line-height: 1.3;
}
.operation-rhythm-list li strong {
    font-size: 13px;
    color: #222;
}
.operation-rhythm-list li em {
    font-size: 12px;
    font-style: normal;
    line-height: 1.5;
    color: #777;
}
.operation-deliver-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}
.operation-deliver-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.55;
    color: #555;
    padding: 8px 10px;
    border-radius: 8px;
    background: #f8faff;
}
.operation-deliver-list li i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #2460f2;
    font-size: 14px;
}

.about-service-block .service-block-side {
    flex: 0 0 42%;
    max-width: 42%;
}
.about-service-block .service-block-visual {
    margin-bottom: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(36, 96, 242, 0.12);
    background: #eef3fb;
}
.about-service-block .service-block-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.service-sub-strip {
    margin-top: 28px;
}
.service-sub-grid-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.service-sub-grid-row .service-sub-card {
    height: 100%;
}
.about-service-block .service-sub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.about-service-block .service-sub-card {
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 10px;
    padding: 16px 18px;
    box-shadow: 0 6px 18px rgba(36, 96, 242, 0.05);
}
.about-service-block:nth-child(even) .service-sub-card {
    background: #f8faff;
}
.about-service-block .service-sub-card h4 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}
.about-service-block .service-sub-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: #777;
}

/* 企业官网建设 - 网站类型卡片 */
.website-type-section {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid #e8ecf3;
}
.website-type-header {
    text-align: center;
    margin-bottom: 28px;
}
.website-type-header h4 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #222;
}
.website-type-header p {
    margin: 10px 0 0;
    font-size: 14px;
    color: #888;
}
.website-type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.website-type-card {
    display: flex;
    flex-direction: column;
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
    border: 1px solid #e8ecf3;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.website-type-card:hover {
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}
.website-type-card.is-expanded {
    border-color: #2460f2;
    box-shadow: 0 16px 36px rgba(36, 96, 242, 0.14);
}
.website-type-cover {
    position: relative;
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eef3fb;
}
.website-type-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}
.website-type-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px 22px 20px;
}
.website-type-body h5 {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
}
.website-type-body h5 .fa-check-circle {
    color: #f5a623;
    font-size: 18px;
}
.website-type-desc {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.75;
    color: #777;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.website-type-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.website-type-collapse-inner {
    padding-top: 2px;
}
.website-type-detail {
    margin: 0;
    padding: 14px 16px;
    border-radius: 8px;
    background: #f8faff;
    border: 1px solid #e8ecf3;
}
.website-type-detail p {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.75;
    color: #666;
}
.website-type-detail p:last-child {
    margin-bottom: 0;
}
.website-type-detail strong {
    color: #333;
    font-weight: 600;
}
.website-type-features {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}
.website-type-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}
.website-type-features li .fa-check {
    flex-shrink: 0;
    margin-top: 3px;
    color: #f5a623;
    font-size: 12px;
}
.website-type-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #eef2f8;
    font-size: 14px;
    font-weight: 600;
    color: #2460f2 !important;
    text-decoration: none !important;
    cursor: pointer;
}
.website-type-link:hover {
    color: #1a4fd6 !important;
}
.website-type-link-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}
.website-type-card.is-expanded .website-type-link-icon {
    transform: rotate(180deg);
}
.website-type-more {
    margin-top: 28px;
    text-align: center;
}
.website-type-more a,
.website-type-more-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 28px;
    border: 1px solid #2460f2;
    border-radius: 6px;
    background: #fff;
    color: #2460f2 !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
}
.website-type-more a:hover,
.website-type-more-toggle:hover {
    background: #2460f2;
    color: #fff !important;
}

/* AISEO/GEO - AI平台GEO优化 */
.geo-platform-section {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid #e8ecf3;
}
.geo-platform-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 32px;
}
.geo-platform-header h4 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #222;
}
.geo-platform-header p {
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.9;
    color: #666;
}
.geo-platform-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}
.geo-platform-col {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 12px;
    padding: 28px 30px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.geo-platform-col-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.geo-platform-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 20px;
    flex-shrink: 0;
}
.geo-platform-icon.is-blue {
    background: #e8f0ff;
    color: #2460f2;
}
.geo-platform-icon.is-purple {
    background: #f0eaff;
    color: #7c3aed;
}
.geo-platform-col-head h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #222;
}
.geo-platform-col-desc {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.85;
    color: #555;
}
.geo-platform-block {
    margin-bottom: 16px;
}
.geo-platform-block:last-child {
    margin-bottom: 0;
    margin-top: auto;
}
.geo-platform-block h6 {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}
.geo-platform-block p {
    margin: 0;
    font-size: 14px;
    line-height: 1.85;
    color: #555;
}
.geo-platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.geo-platform-tags span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: #eef4ff;
    border: 1px solid rgba(36, 96, 242, 0.15);
    color: #2460f2;
    font-size: 13px;
    line-height: 1.4;
}
.geo-platform-flow {
    margin: 0;
    padding: 14px 16px;
    border-radius: 8px;
    background: #f8faff;
    border: 1px solid #e8ecf3;
    font-size: 14px;
    line-height: 1.85;
    color: #444;
}
.geo-platform-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}
.geo-platform-feature-card {
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.geo-platform-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(36, 96, 242, 0.1);
}
.geo-platform-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #e8f0ff;
    color: #2460f2;
    font-size: 16px;
    margin-bottom: 12px;
}
.geo-platform-feature-card h6 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}
.geo-platform-feature-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: #777;
}

/* 企业代运营 - 痛点困扰 */
.operation-pain-section {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid #e8ecf3;
}
.operation-pain-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 30px;
}
.operation-pain-header h4 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #222;
}
.operation-pain-header p {
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.85;
    color: #666;
}
.operation-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.operation-pain-card {
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 12px;
    padding: 24px 22px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.operation-pain-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.operation-pain-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffecee;
    color: #e85d5d;
    font-size: 18px;
    margin-bottom: 14px;
}
.operation-pain-card h5 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
}
.operation-pain-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}
.operation-pain-footer {
    margin: 28px auto 0;
    max-width: 820px;
    text-align: center;
    font-size: 15px;
    line-height: 1.85;
    color: #555;
}

.about-services-why {
    padding: 48px 0 56px;
    background: linear-gradient(135deg, #1a5cf5 0%, #2460f2 45%, #4f8cff 100%);
    color: #fff;
}
.about-services-why h3 {
    margin: 0 0 10px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}
.about-services-why > .container > p {
    margin: 0 auto 32px;
    max-width: 720px;
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}
.about-services-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.about-services-why-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
}
.about-services-why-item i {
    font-size: 30px;
    margin-bottom: 12px;
}
.about-services-why-item h4 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
}
.about-services-why-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}
.about-services-bottom-cta {
    text-align: center;
    padding: 36px 16px 10px;
    background: #f5f7fa;
}
.about-services-bottom-cta a {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #2460f2;
    border-radius: 6px;
    color: #2460f2 !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    background: #fff;
    transition: all 0.25s ease;
}
.about-services-bottom-cta a:hover {
    background: #2460f2;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(36, 96, 242, 0.25);
}
@media (max-width: 991.98px) {
    .about-services-hub,
    .page-content {
        overflow-x: hidden;
    }
    .website-type-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .geo-platform-columns {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .service-focus-list {
        grid-template-columns: 1fr;
    }
    .operation-pain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .geo-platform-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .about-service-block .service-block-inner,
    .about-service-block.is-reverse .service-block-inner {
        flex-direction: column;
        gap: 24px;
    }
    .about-service-block .service-block-side {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }
    .about-services-why-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 575.98px) {
    .about-services-hub .service-hub-hero h2 {
        font-size: 26px;
    }
    .about-services-hub .service-hub-hero p {
        padding: 0 4px;
    }
    .about-service-block .service-block-main h3 {
        font-size: 22px;
    }
    .geo-platform-features {
        grid-template-columns: 1fr;
    }
    .geo-platform-header h4 {
        font-size: 22px;
    }
    .operation-pain-grid {
        grid-template-columns: 1fr;
    }
    .operation-pain-header h4 {
        font-size: 22px;
    }
    .operation-trend-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .operation-trend-bars {
        grid-template-columns: repeat(3, 1fr);
        height: 150px;
    }
    .operation-trend-metrics {
        grid-template-columns: 1fr;
    }
    .about-services-hub .service-hub-nav a {
        font-size: 12px;
        padding: 7px 12px;
    }
    .about-contact-anim-left,
    .about-contact-anim-right {
        transform: none;
    }
}

.about-contact-wrap { scroll-margin-top: 150px; margin-top: 48px; padding-bottom: 20px; }
.about-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.about-contact-panel {
    background: #fff;
    border: 1px solid #e6ecf8;
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 8px 28px rgba(36, 96, 242, 0.08);
}
.about-contact-panel h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}
.about-contact-anim {
    opacity: 0;
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-contact-anim-left {
    transform: translateX(-72px);
}
.about-contact-anim-right {
    transform: translateX(72px);
}
.about-contact-wrap.is-visible .about-contact-anim-left,
.about-contact-wrap.is-visible .about-contact-anim-right {
    opacity: 1;
    transform: translateX(0);
}
.about-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.about-contact-form label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}
.about-contact-form input,
.about-contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    color: #333;
    background: #f5f8ff;
    border: 1px solid #e0e8f5;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.about-contact-form input:focus,
.about-contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(36, 96, 242, 0.12);
}
.about-contact-form textarea {
    min-height: 120px;
    resize: vertical;
    margin-bottom: 18px;
}
.about-contact-form .form-field-full {
    margin-bottom: 14px;
}
.about-contact-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #5b8df7 100%);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 20px rgba(36, 96, 242, 0.25);
}
.about-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(36, 96, 242, 0.32);
}
.about-contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.about-contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}
.about-contact-info-list li i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(36, 96, 242, 0.08);
    color: var(--primary-color);
    font-size: 16px;
}
.about-contact-hours {
    font-size: 13px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 24px;
}
.about-contact-divider {
    height: 1px;
    background: #e6ecf8;
    margin: 24px 0;
}
.about-contact-more {
    position: relative;
}
.about-contact-more h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 18px;
}
.about-contact-more-inner {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}
.about-contact-qrcode {
    flex: 0 0 110px;
    text-align: center;
}
.about-contact-qrcode img {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto 8px;
    padding: 6px;
    background: #fff;
    border: 1px solid #e6ecf8;
    border-radius: 10px;
    object-fit: contain;
}
.about-contact-qrcode img + img {
    display: none;
}
.about-contact-qrcode span {
    font-size: 12px;
    color: #666;
}
.about-contact-benefits {
    flex: 1;
    min-width: 0;
    max-width: 240px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-contact-mascot {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    pointer-events: none;
    background: transparent;
}
.about-contact-mascot img {
    width: 260px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 10px 20px rgba(36, 96, 242, 0.18));
    animation: about-mascot-float 3s ease-in-out infinite;
}
@keyframes about-mascot-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.about-contact-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #555;
    line-height: 1.55;
}
.about-contact-benefits li i {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 3px;
}
@media (max-width: 991px) {
    .about-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-contact-anim-left {
        transform: translateX(-48px);
    }
    .about-contact-anim-right {
        transform: translateX(48px);
    }
    .about-contact-more-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .about-contact-mascot img {
        width: 200px;
    }
    .about-contact-benefits {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
@media (max-width: 575px) {
    .about-contact-panel {
        padding: 24px 18px;
    }
    .about-contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .about-contact-more h4 {
        text-align: center;
        margin-bottom: 14px;
    }
    .about-contact-more-inner {
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        grid-template-areas:
            "qrcode mascot"
            "benefits benefits";
        gap: 10px 6px;
        align-items: center;
    }
    .about-contact-qrcode {
        grid-area: qrcode;
        justify-self: center;
        width: auto;
    }
    .about-contact-qrcode img {
        width: 92px;
        height: 92px;
        margin-bottom: 6px;
        padding: 4px;
    }
    .about-contact-qrcode span {
        font-size: 11px;
        display: block;
        line-height: 1.3;
    }
    .about-contact-mascot {
        grid-area: mascot;
        flex: none;
        align-self: end;
    }
    .about-contact-mascot img {
        width: 150px;
        filter: drop-shadow(0 6px 14px rgba(36, 96, 242, 0.14));
    }
    .about-contact-benefits {
        grid-area: benefits;
        margin-top: 4px;
        padding: 14px 14px 10px;
        background: #f5f8ff;
        border: 1px solid #e6ecf8;
        border-radius: 10px;
    }
    .about-contact-benefits li {
        margin-bottom: 10px;
        font-size: 12px;
        gap: 8px;
    }
    .about-contact-benefits li:last-child {
        margin-bottom: 0;
    }
