/* ==========================================
   agent.css - AI智能体定制与托管业务模块样式
   主色: #1a1a2e → #16213e → #0f3460 科技深蓝
   强调: #e94560 CTA红 / #533483 AI紫
   ========================================== */

/* ============ Hero区域 ============ */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    padding: 120px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(83,52,131,0.3) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15,52,96,0.4) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-section .hero-content {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}
.hero-section .hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: 1px;
}
.hero-section .hero-title span {
    background: linear-gradient(90deg, #e94560, #533483);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-section .hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}
.hero-section .hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-section .hero-cta .btn-primary {
    display: inline-block;
    background: #e94560;
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e94560;
}
.hero-section .hero-cta .btn-primary:hover {
    background: #c73a52;
    border-color: #c73a52;
}
.hero-section .hero-cta .btn-secondary {
    display: inline-block;
    background: transparent;
    color: rgba(255,255,255,0.9);
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.4);
}
.hero-section .hero-cta .btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}
.hero-section .hero-platforms {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-section .hero-platforms span {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.hero-section .hero-platforms span:hover {
    background: rgba(233,69,96,0.2);
    border-color: rgba(233,69,96,0.4);
}

/* ============ 信任数据带 ============ */
.trust-bar {
    background: #fff;
    padding: 48px 0;
    border-bottom: 1px solid #eee;
}
.trust-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.trust-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 24px;
}
.trust-item {
    min-width: 120px;
}
.trust-item .trust-num {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #0f3460, #533483);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.trust-item .trust-label {
    font-size: 14px;
    color: #888;
    margin-top: 6px;
}

/* ============ 核心业务3卡 ============ */
.services-section {
    padding: 80px 0;
    background: #F5F5F5;
}
.services-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1D1D1D;
    margin-bottom: 12px;
}
.services-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #888;
    margin-bottom: 50px;
}
.services-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: rgba(255,255,255,0.8);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(15,52,96,0.12);
    border-color: rgba(83,52,131,0.3);
}
.service-card .card-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(15,52,96,0.08), rgba(83,52,131,0.08));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}
.service-card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.service-card .card-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
}
.service-card .card-tags {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}
.service-card .card-tags span {
    background: rgba(15,52,96,0.06);
    color: #0f3460;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
}

/* ============ Tab切换服务详情 ============ */
.agent-tabs-section {
    padding: 80px 0;
    background: #fff;
}
.agent-tabs-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.agent-tabs-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #888;
    margin-bottom: 40px;
}
.agent-tabs-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.agent-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.agent-tabs-nav .tab-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #666;
}
.agent-tabs-nav .tab-btn:hover {
    border-color: #0f3460;
    color: #0f3460;
}
.agent-tabs-nav .tab-btn.active {
    background: #1a1a2e;
    color: #fff;
    border-color: #1a1a2e;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
    animation: tabFadeIn 0.4s ease;
}
@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.tab-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.tab-card {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    background: #F8F9FB;
    border-radius: 14px;
    padding: 30px 24px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}
.tab-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: rgba(83,52,131,0.2);
}
.tab-card .tab-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0f3460, #533483);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
}
.tab-card .tab-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.tab-card .tab-card-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
}

/* ============ 案例区域 ============ */
.cases-section {
    padding: 80px 0;
    background: #F5F5F5;
}
.cases-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.cases-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #888;
    margin-bottom: 50px;
}
.cases-grid {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.case-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}
.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: rgba(83,52,131,0.2);
}
.case-card .case-padding {
    padding: 28px;
}
.case-card .case-industry {
    display: inline-block;
    background: linear-gradient(135deg, #0f3460, #533483);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 14px;
}
.case-card .case-name {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.case-card .case-result {
    font-size: 14px;
    color: #e94560;
    font-weight: 600;
    margin-bottom: 12px;
}
.case-card .case-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
}

/* ============ 技术能力条 ============ */
.tech-stack-section {
    padding: 50px 0;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.tech-stack-section .section-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 30px;
}
.tech-stack-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.tech-stack-wrap .tech-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: #F5F5F5;
    border-radius: 50px;
    font-size: 13px;
    color: #555;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}
.tech-stack-wrap .tech-tag:hover {
    background: rgba(15,52,96,0.06);
    color: #0f3460;
    border-color: rgba(15,52,96,0.2);
}
.tech-stack-wrap .tech-tag i {
    font-size: 16px;
    color: #533483;
}

/* ============ 资讯区域 ============ */
.geo-news-section {
    padding: 60px 0 80px;
    background: #F5F5F5;
}
.geo-news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.geo-news-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.geo-news-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #888;
    margin-bottom: 30px;
}
.news-tabs-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.news-tabs-filter .filter-btn {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
}
.news-tabs-filter .filter-btn:hover,
.news-tabs-filter .filter-btn.active {
    background: #1a1a2e;
    color: #fff;
    border-color: #1a1a2e;
}

/* ============ 底部CTA ============ */
.cta-bottom {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #533483 100%);
    padding: 90px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-bottom::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233,69,96,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-bottom .cta-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}
.cta-bottom .cta-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}
.cta-bottom .cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.cta-bottom .cta-btn-primary {
    display: inline-block;
    background: #e94560;
    color: #fff;
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cta-bottom .cta-btn-primary:hover {
    background: #c73a52;
    transform: translateY(-2px);
}
.cta-bottom .cta-btn-secondary {
    display: inline-block;
    background: transparent;
    color: rgba(255,255,255,0.9);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}
.cta-bottom .cta-btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}

/* ============ 通用容器 ============ */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ 响应式 ============ */
@media (max-width: 768px) {
    .hero-section { padding: 70px 0 60px; }
    .hero-section .hero-title { font-size: 32px; }
    .hero-section .hero-subtitle { font-size: 16px; margin-bottom: 30px; }
    .hero-section .hero-cta { flex-direction: column; align-items: center; }
    .hero-section .hero-cta .btn-primary,
    .hero-section .hero-cta .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
    .hero-section .hero-platforms { gap: 10px; }
    .hero-section .hero-platforms span { padding: 5px 12px; font-size: 12px; }

    .trust-bar .trust-grid { gap: 16px; }
    .trust-item .trust-num { font-size: 26px; }
    .trust-item .trust-label { font-size: 12px; }
    .trust-item { min-width: 80px; }

    .services-section, .cases-section, .agent-tabs-section { padding: 50px 0; }
    .services-section .section-title,
    .cases-section .section-title,
    .agent-tabs-section .section-title { font-size: 24px; }

    .services-grid, .cases-grid, .tab-grid { gap: 16px; }
    .service-card, .case-card { min-width: 100%; max-width: 100%; }
    .tab-card { min-width: 100%; max-width: 100%; }

    .agent-tabs-nav { gap: 8px; }
    .agent-tabs-nav .tab-btn { padding: 10px 18px; font-size: 13px; }

    .tech-stack-wrap { gap: 10px; }
    .tech-stack-wrap .tech-tag { padding: 6px 14px; font-size: 12px; }

    .cta-bottom { padding: 60px 20px; }
    .cta-bottom .cta-title { font-size: 24px; }
    .cta-bottom .cta-btns { flex-direction: column; align-items: center; }
    .cta-bottom .cta-btn-primary,
    .cta-bottom .cta-btn-secondary { width: 100%; max-width: 280px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-section .hero-title { font-size: 26px; }
    .trust-item { min-width: 60px; }
    .trust-item .trust-num { font-size: 22px; }
}

/* ============ 栏目页样式 ============ */
.cate-banner {
    padding: 70px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.cate-banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.cate-banner-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: 1px;
}
.cate-banner-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.6;
}
.cate-banner-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.cate-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.cate-main {
    flex: 1;
    min-width: 0;
}
.cate-sidebar {
    width: 280px;
    flex-shrink: 0;
}

/* 栏目页列表覆盖原主题样式 */
.cate-list .PostShow.cate-grid ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.cate-list .PostShow.cate-grid ul li.cate-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    width: auto;
    float: none;
    margin: 0;
    padding: 0;
}
.cate-list .PostShow.cate-grid ul li.cate-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(83,52,131,0.12);
    border-color: rgba(83,52,131,0.2);
}
.cate-card-img {
    position: relative;
    width: 100%;
    padding-top: 56%;
    overflow: hidden;
}
.cate-card-img .pic {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: block;
}
.cate-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.cate-card:hover .cate-card-img img {
    transform: scale(1.03);
}
.cate-card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cate-card-info h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.4;
    color: #1a1a2e;
}
.cate-card-info h4 a {
    color: inherit;
    text-decoration: none;
}
.cate-card-info h4 a:hover {
    color: #533483;
}
.cate-card-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cate-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 12px;
}
.cate-card-tag {
    background: rgba(83,52,131,0.1);
    color: #533483;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 500;
}
.cate-card-date {
    color: #999;
}
.cate-card-date i {
    font-size: 13px;
    vertical-align: -1px;
}
.cate-card-link {
    font-size: 14px;
    color: #533483;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}
.cate-card-link:hover {
    gap: 8px;
}

/* 子分类筛选标签 */
.cate-filter {
    margin: 20px 0 24px;
}
.cate-filter-inner ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.cate-filter-inner ul li a {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
    background: #fff;
}
.cate-filter-inner ul li a:hover {
    border-color: #533483;
    color: #533483;
    background: rgba(83,52,131,0.04);
}
.cate-filter-inner ul li.active a {
    background: #533483;
    color: #fff;
    border-color: #533483;
}

/* 栏目页侧边栏 */
.cate-side-box {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}
.cate-side-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cate-side-title i {
    color: #533483;
    font-size: 18px;
}
.cate-side-contact {
    text-align: center;
}
.cate-side-qr {
    width: 140px;
    height: 140px;
    border-radius: 8px;
    margin-bottom: 12px;
}
.cate-side-phone {
    font-size: 15px;
    color: #333;
    margin: 0 0 14px;
    font-weight: 500;
}
.cate-side-phone i {
    color: #533483;
}
.cate-side-btn {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    background: linear-gradient(135deg, #533483, #e94560);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.2s;
}
.cate-side-btn:hover {
    opacity: 0.9;
    color: #fff;
}
.cate-side-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cate-side-links li {
    margin-bottom: 10px;
}
.cate-side-links li:last-child {
    margin-bottom: 0;
}
.cate-side-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}
.cate-side-links li a:hover {
    background: rgba(83,52,131,0.06);
    color: #533483;
}
.cate-side-links li a i {
    font-size: 16px;
    color: #533483;
}
.cate-side-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cate-side-tags a {
    display: inline-block;
    padding: 4px 12px;
    background: #f5f3f8;
    border-radius: 14px;
    font-size: 13px;
    color: #533483;
    text-decoration: none;
    transition: all 0.2s;
}
.cate-side-tags a:hover {
    background: #533483;
    color: #fff;
}

/* 栏目页面包屑覆盖 */
.cate-layout .breadcrumb {
    margin-bottom: 0;
}
/* 栏目banner渐变变体（按栏目类别） */
.cate-banner.cate-ai     { background: linear-gradient(135deg, #1a1a2e, #533483) !important; }
.cate-banner.cate-host   { background: linear-gradient(135deg, #1a1a2e, #0f3460) !important; }
.cate-banner.cate-geo    { background: linear-gradient(135deg, #16213e, #0f3460) !important; }
.cate-banner.cate-case   { background: linear-gradient(135deg, #1a1a2e, #16213e) !important; }
.cate-banner.cate-news   { background: linear-gradient(135deg, #16213e, #533483) !important; }

/* 栏目布局与容器的间距 */
.cate-layout {
    margin-top: 0;
    padding-top: 24px;
}
/* 覆盖原主题float布局 */
.article .cate-layout {
    overflow: visible !important;
}
.article:has(.cate-layout) {
    overflow: visible !important;
}
.umSidebar .cate-layout .cate-main {
    float: none !important;
    width: auto !important;
    padding-right: 0 !important;
}
.umSidebar .cate-layout .cate-main .umArt {
    float: none !important;
    width: 100% !important;
    padding-right: 0 !important;
}
.cate-layout .cate-sidebar {
    float: none !important;
    margin-left: 0 !important;
    width: 280px !important;
}
.cate-layout .PostShow li {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}
.cate-layout .PostShow ul {
    margin-right: 0 !important;
    font-size: 14px !important;
}
.cate-layout + .sidebar,
.cate-layout ~ .sidebar {
    display: none;
}
.cate-layout .cate-main .post.list {
    padding: 0;
    margin: 0;
    background: transparent;
    box-shadow: none;
}

/* 栏目页分页覆盖 */
.cate-list .pagebar {
    margin-top: 30px;
    text-align: center;
}

/* 隐藏原有栏目Banner */
.cate-layout ~ .bnBox.cateBn,
.cate-banner + .main .bnBox.cateBn {
    display: none;
}

/* ============ 栏目页响应式 ============ */
@media (max-width: 1200px) {
    .cate-sidebar { width: 260px; }
}
@media (max-width: 992px) {
    .cate-layout {
        flex-direction: column;
    }
    .cate-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .cate-side-box { margin-bottom: 0; }
}
@media (max-width: 768px) {
    .cate-banner { padding: 50px 16px 40px; }
    .cate-banner-title { font-size: 26px; }
    .cate-banner-desc { font-size: 14px; }
    .cate-list .PostShow.cate-grid ul {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .cate-sidebar {
        grid-template-columns: 1fr;
    }
    .cate-filter-inner ul {
        gap: 8px;
    }
    .cate-filter-inner ul li a {
        padding: 5px 14px;
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .cate-banner { padding: 40px 12px 30px; }
    .cate-banner-title { font-size: 22px; }
    .cate-card-info { padding: 16px; }
    .cate-card-info h4 { font-size: 15px; }
}

/* ============ 导航栏二级菜单全屏居中 ============ */
.header .navBar .custom li .list {
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    transform: translateY(5px);
}
.header .navBar .custom li .list .listNav {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.header .navBar .custom li .list .listNav a {
    display: block;
    padding: 8px 0;
    white-space: nowrap;
}
.header .navBar .custom li:hover .list,
.header .navBar .custom li.on .list {
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    transform: translateY(0);
}

/* ============ 文章页样式 ============ */
.article-layout {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}
.article-layout .umArt {
    float: none !important;
    width: 100% !important;
    padding-right: 0 !important;
}
.article-main {
    flex: 1;
    min-width: 0;
}
.article-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.article-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 14px;
}
.article-header {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.article-meta {
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.article-meta-tag {
    background: rgba(83,52,131,0.1);
    color: #533483;
    padding: 2px 12px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 500;
}
.article-meta-tag a {
    color: inherit;
    text-decoration: none;
}

.article-content-box .umArtBody {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}
.article-content-box .umArtBody h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 4px solid #533483;
}
.article-content-box .umArtBody h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 30px;
    margin-bottom: 12px;
}
.article-content-box .umArtBody p {
    margin-bottom: 20px;
}
.article-content-box .umArtBody img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: block;
    margin: 24px auto;
}
.article-content-box .umArtBody blockquote {
    border-left: 4px solid #533483;
    background: #f8f6fc;
    padding: 16px 24px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
    color: #555;
}
.article-content-box .umArtBody pre,
.article-content-box .umArtBody code {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 20px;
    overflow-x: auto;
    color: #d4d4d4;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    margin: 24px 0;
}
.article-content-box .umArtBody code {
    padding: 3px 8px;
    font-size: 13px;
    border-radius: 4px;
}
.article-content-box .umArtBody pre code {
    padding: 0;
    background: none;
    border-radius: 0;
    margin: 0;
}
.article-content-box .umArtBody ul,
.article-content-box .umArtBody ol {
    margin: 16px 0;
    padding-left: 24px;
}
.article-content-box .umArtBody ul li::marker {
    color: #533483;
}
.article-content-box .umArtBody table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}
.article-content-box .umArtBody table th {
    background: #1a1a2e;
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}
.article-content-box .umArtBody table td {
    padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
}
.article-content-box .umArtBody table tr:nth-child(even) td {
    background: #f8f9fa;
}
.article-content-box .umArtBody a {
    color: #533483;
    text-decoration: none;
}
.article-content-box .umArtBody a:hover {
    text-decoration: underline;
}

.article-cta-card {
    background: linear-gradient(135deg, #1a1a2e, #533483);
    border-radius: 12px;
    padding: 40px;
    margin-top: 60px;
    text-align: center;
}
.article-cta-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.article-cta-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}
.article-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.article-cta-btn-p {
    display: inline-block;
    background: #e94560;
    color: #fff;
    padding: 12px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.article-cta-btn-p:hover {
    background: #c73a52;
    color: #fff;
}
.article-cta-btn-s {
    display: inline-block;
    background: transparent;
    color: rgba(255,255,255,0.9);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}
.article-cta-btn-s:hover {
    border-color: #fff;
    color: #fff;
}

.relates-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #533483;
    display: inline-block;
}

.article-side-box {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}
.article-side-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.article-side-title i {
    color: #533483;
    font-size: 18px;
}

.article-toc {
    position: sticky;
    top: 80px;
}
.article-toc-list a {
    display: block;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    padding: 6px 0;
    line-height: 1.6;
    transition: all 0.2s;
    border-left: 2px solid transparent;
    padding-left: 12px;
}
.article-toc-list a.toc-h3 {
    padding-left: 28px;
    font-size: 13px;
}
.article-toc-list a:hover {
    color: #533483;
}
.article-toc-list a.active {
    color: #533483;
    border-left-color: #533483;
    font-weight: 500;
}

.article-side-contact {
    text-align: center;
}
.article-side-qr {
    width: 130px;
    height: 130px;
    border-radius: 8px;
    margin: 0 auto 12px;
    display: block;
}
.article-side-phone {
    font-size: 15px;
    color: #333;
    margin: 0 0 14px;
    font-weight: 500;
}
.article-side-phone i {
    color: #533483;
}
.article-side-btn {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    background: linear-gradient(135deg, #533483, #e94560);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.2s;
}
.article-side-btn:hover {
    opacity: 0.9;
    color: #fff;
}
.article-side-articles {
    list-style: none;
    padding: 0;
    margin: 0;
}
.article-side-articles li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f5f5f5;
}
.article-side-articles li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.article-side-articles li a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    line-height: 1.5;
    display: block;
    transition: color 0.2s;
}
.article-side-articles li a:hover {
    color: #533483;
}
.article-side-empty {
    font-size: 13px;
    color: #999;
    text-align: center;
}

.service-overview-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 30px;
    border: 1px solid rgba(83,52,131,0.15);
    box-shadow: 0 4px 24px rgba(83,52,131,0.08), 0 0 0 1px rgba(83,52,131,0.06);
}
.svc-row {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}
.svc-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.svc-label {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}
.svc-value {
    font-size: 16px;
    color: #1a1a2e;
    font-weight: 600;
}
.svc-cta {
    margin-top: 8px;
    text-align: center;
}
.svc-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #533483, #e94560);
    color: #fff;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s, transform 0.3s;
}
.svc-cta-btn:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-1px);
}

.article-related-section {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #f0f0f0;
}
.article-related-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}
.article-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.article-related-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
.article-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.article-related-thumb {
    width: 100%;
    height: 140px;
    overflow: hidden;
}
.article-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.article-related-card:hover .article-related-thumb img {
    transform: scale(1.05);
}
.article-related-info {
    padding: 14px 16px;
}
.article-related-tag {
    display: inline-block;
    background: rgba(83,52,131,0.1);
    color: #533483;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
}
.article-related-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

.article-layout .umArtBox {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    padding: 36px;
}

/* ============ 文章页响应式 ============ */
@media (max-width: 992px) {
    .article-layout {
        flex-direction: column;
    }
    .article-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .article-side-box {
        margin-bottom: 0;
    }
    .article-toc {
        position: static;
    }
    .article-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .svc-row {
        flex-wrap: wrap;
    }
    .svc-field {
        min-width: 45%;
    }
}
@media (max-width: 768px) {
    .article-layout .umArtBox {
        padding: 20px;
    }
    .article-title {
        font-size: 24px;
    }
    .article-content-box .umArtBody h2 {
        font-size: 20px;
    }
    .article-content-box .umArtBody h3 {
        font-size: 18px;
    }
    .article-cta-card {
        padding: 28px 20px;
        margin-top: 40px;
    }
    .article-cta-title {
        font-size: 18px;
    }
    .article-sidebar {
        grid-template-columns: 1fr;
    }
    .article-related-grid {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    .article-related-card {
        min-width: 220px;
        max-width: 220px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .article-related-thumb {
        height: 120px;
    }
    .service-overview-card {
        padding: 20px;
    }
    .svc-row {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============ Footer导航分类 ============ */
.footer .container {
    font-size: 14px !important;
    overflow: visible !important;
}
.footer .ftBox {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: flex-start;
}
.footer .ftNav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    flex: 1 1 auto;
    font-size: 14px;
}
.footer .ftNavCol {
    min-width: 120px;
    float: none !important;
}
.footer .ftNavCol h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px;
    opacity: 1;
}
.footer .ftNavCol ul {
    list-style: none;
    padding: 0;
    margin: 0;
    float: none !important;
}
.footer .ftNavCol ul li {
    margin-bottom: 8px;
    overflow: visible;
}
.footer .ftNavCol ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    opacity: 1;
    transition: color 0.2s;
}
.footer .ftNavCol ul li a:hover {
    color: #e94560;
}
.footer .ftNav .us {
    margin-left: auto;
    padding-right: 0;
}
@media (max-width: 768px) {
    .footer .ftNav {
        gap: 20px;
    }
    .footer .ftNavCol {
        min-width: 100px;
    }
    .footer .ftNav .us {
        margin-left: 0;
        width: 100%;
    }
}
