/* 众力职跃咨询 - 共用样式表 */

html {
    scroll-behavior: smooth;
}

.gradient-text {
    background: linear-gradient(135deg, #f97316 0%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-gradient {
    background: linear-gradient(135deg, #1a365d 0%, #243b53 50%, #334e68 100%);
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(26, 54, 93, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.4);
}

.btn-outline {
    border: 2px solid #f97316;
    color: #f97316;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #f97316;
    color: white;
    transform: translateY(-2px);
}

.section-divider {
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #eab308);
    border-radius: 2px;
}

.pain-card {
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #eab308);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.pain-card:hover::before {
    transform: scaleX(1);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card .badge {
    position: absolute;
    top: 20px;
    right: -30px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #eab308, #f97316);
    color: white;
    padding: 4px 40px;
    font-size: 12px;
    font-weight: 600;
}

.process-step {
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f97316, #eab308);
    z-index: 0;
}

@media (max-width: 768px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 12px;
    padding-bottom: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.nav-scrolled {
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
}

.stat-number {
    background: linear-gradient(135deg, #f97316 0%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: #f97316;
    opacity: 0.2;
    line-height: 1;
}

.feature-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(234, 179, 8, 0.1));
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.open {
    max-height: 500px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 内页页面头部 Banner */
.page-banner {
    background: linear-gradient(135deg, #1a365d 0%, #243b53 50%, #334e68 100%);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,64L80,69.3C160,75,320,85,480,80C640,75,800,53,960,48C1120,43,1280,53,1360,58.7L1440,64L1440,120L1360,120C1280,120,1120,120,960,120C800,120,640,120,480,120C320,120,160,120,80,120L0,120Z' fill='white'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #f97316;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
    color: white;
    font-weight: 500;
}

/* 标签/分类 */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag-primary {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.tag-primary:hover {
    background: #f97316;
    color: white;
}

.tag-secondary {
    background: rgba(26, 54, 93, 0.1);
    color: #1a365d;
}

.tag-secondary:hover {
    background: #1a365d;
    color: white;
}

/* 筛选按钮 */
.filter-btn {
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    background: white;
    color: #6b7280;
}

.filter-btn:hover {
    border-color: #f97316;
    color: #f97316;
}

.filter-btn.active {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border-color: transparent;
}

/* 文章卡片 */
.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
}

.article-card .article-image {
    height: 200px;
    background: linear-gradient(135deg, #1a365d, #334e68);
    position: relative;
    overflow: hidden;
}

.article-card .article-image .category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(249, 115, 22, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
}

/* 案例卡片 */
.case-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(26, 54, 93, 0.15);
}

.case-card .case-header {
    padding: 24px;
    background: linear-gradient(135deg, #1a365d, #334e68);
    color: white;
    position: relative;
}

.case-card .case-result {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #f97316, #eab308);
    color: white;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
}

/* 服务详情区块 */
.service-detail-section {
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.service-detail-header {
    padding: 40px;
    background: linear-gradient(135deg, #1a365d 0%, #334e68 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.service-detail-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

/* 时间线 */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, #f97316, #eab308);
}

.timeline-item {
    position: relative;
    padding-bottom: 32px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 6px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #f97316, #eab308);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

/* 输入框聚焦样式 */
.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* 页面过渡动画 */
.page-fade-in {
    animation: pageFadeIn 0.5s ease-out;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 文章内容样式 */
.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid #f97316;
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #334e68;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.article-content li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.article-content ul li::marker {
    color: #f97316;
}

.article-content blockquote {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(234, 179, 8, 0.05));
    border-left: 4px solid #f97316;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    color: #334e68;
    font-style: italic;
}

.article-content strong {
    color: #1a365d;
    font-weight: 600;
}

.article-content .highlight-box {
    background: linear-gradient(135deg, #1a365d, #334e68);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.article-content .highlight-box h4 {
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

/* 侧边栏 */
.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f97316;
    display: inline-block;
}

/* 响应式导航栏 - 内页 */
.inner-nav {
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 数字计数器动画 */
.count-up {
    font-variant-numeric: tabular-nums;
}

/* 图片占位渐变 */
.placeholder-gradient-1 {
    background: linear-gradient(135deg, #1a365d 0%, #334e68 50%, #486581 100%);
}

.placeholder-gradient-2 {
    background: linear-gradient(135deg, #f97316 0%, #eab308 100%);
}

.placeholder-gradient-3 {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
}

.placeholder-gradient-4 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.placeholder-gradient-5 {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.placeholder-gradient-6 {
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
}

.placeholder-gradient-7 {
    background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
}

.placeholder-gradient-8 {
    background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
}

.placeholder-gradient-9 {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.placeholder-gradient-10 {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

/* ==================== 高转化UI新增组件样式 ==================== */

/* 悬浮客服按钮 - 呼吸动效 */
.floating-customer-service {
    position: fixed;
    right: 24px;
    bottom: 100px;
    z-index: 999;
}

.cs-main-btn {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f97316 0%, #eab308 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: csBreath 2s ease-in-out infinite;
}

.cs-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5);
}

.cs-main-btn i {
    color: white;
    font-size: 28px;
}

@keyframes csBreath {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4), 0 0 0 0 rgba(249, 115, 22, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4), 0 0 0 15px rgba(249, 115, 22, 0);
    }
}

/* 客服面板 */
.cs-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
}

.cs-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.cs-panel-header {
    background: linear-gradient(135deg, #1a365d 0%, #334e68 100%);
    color: white;
    padding: 16px 20px;
}

.cs-panel-header h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.cs-panel-header p {
    font-size: 12px;
    opacity: 0.8;
}

.cs-panel-options {
    padding: 8px 0;
}

.cs-option {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.cs-option:last-child {
    border-bottom: none;
}

.cs-option:hover {
    background: #f9fafb;
    padding-left: 24px;
}

.cs-option-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.cs-option-icon.wechat {
    background: linear-gradient(135deg, #10b981, #059669);
}

.cs-option-icon.message {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.cs-option-icon.phone {
    background: linear-gradient(135deg, #f97316, #eab308);
}

.cs-option-icon i {
    color: white;
    font-size: 18px;
}

.cs-option-text h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.cs-option-text p {
    font-size: 12px;
    color: #6b7280;
}

/* 微信二维码弹窗 */
.wechat-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wechat-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.wechat-modal {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wechat-modal-overlay.open .wechat-modal {
    transform: scale(1) translateY(0);
}

.wechat-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6b7280;
}

.wechat-modal-close:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.wechat-modal h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 8px;
}

.wechat-modal .subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.wechat-modal .qr-container {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

.wechat-modal .qr-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wechat-modal .wechat-id-box {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.wechat-modal .wechat-id-box .label {
    font-size: 13px;
    color: #166534;
}

.wechat-modal .wechat-id-box .id-text {
    font-weight: 700;
    color: #15803d;
    font-size: 16px;
}

.wechat-modal .copy-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.wechat-modal .copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.wechat-modal .tip {
    font-size: 12px;
    color: #9ca3af;
}

/* 退出挽留弹窗 */
.exit-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.exit-modal {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.exit-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #f97316, #eab308);
}

.exit-modal-overlay.open .exit-modal {
    transform: scale(1) translateY(0);
}

.exit-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6b7280;
    z-index: 10;
}

.exit-modal-close:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.exit-modal .gift-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f97316, #eab308);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: giftBounce 2s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.exit-modal .gift-icon i {
    color: white;
    font-size: 36px;
}

.exit-modal h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 8px;
    line-height: 1.4;
}

.exit-modal .highlight {
    background: linear-gradient(135deg, #f97316, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exit-modal .desc {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.exit-modal .book-cover {
    width: 120px;
    height: 160px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1a365d, #334e68);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
    position: relative;
}

.exit-modal .book-cover::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.exit-modal .book-cover i {
    font-size: 32px;
    color: #eab308;
    margin-bottom: 8px;
}

.exit-modal .book-cover .book-title {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}

.exit-modal .book-cover .book-author {
    font-size: 10px;
    opacity: 0.7;
    margin-top: 4px;
}

.exit-modal form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.exit-modal form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.exit-modal form input:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.exit-modal form button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.exit-modal form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.exit-modal .no-spam {
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-modal .no-spam i {
    margin-right: 4px;
    color: #10b981;
}

/* 实时动态模块 */
.realtime-notice {
    position: fixed;
    left: 24px;
    bottom: 120px;
    background: white;
    border-radius: 50px;
    padding: 10px 18px 10px 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    z-index: 998;
    max-width: 280px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.realtime-notice.show {
    opacity: 1;
    transform: translateX(0);
}

.realtime-notice .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #eab308);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
}

.realtime-notice .content {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.4;
}

.realtime-notice .content strong {
    color: #f97316;
    font-weight: 700;
}

/* 顶部优惠横幅 - 倒计时 */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #f97316, #ea580c);
    color: white;
    z-index: 1000;
    padding: 8px 0;
}

.promo-banner .banner-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.promo-banner .banner-text {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-banner .countdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.promo-banner .countdown-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    min-width: 22px;
    text-align: center;
}

.promo-banner .banner-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.promo-banner .banner-close:hover {
    opacity: 1;
}

/* 移动端底部固定CTA栏 */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 12px;
    z-index: 997;
    display: none;
    gap: 8px;
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
    }
}

.mobile-cta-btn {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-cta-btn.primary {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.mobile-cta-btn.secondary {
    background: #f3f4f6;
    color: #1f2937;
}

/* Offer墙 */
.offer-wall {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .offer-wall {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .offer-wall {
        grid-template-columns: repeat(4, 1fr);
    }
}

.offer-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #fed7aa;
}

.offer-card .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.offer-card .info {
    flex: 1;
    min-width: 0;
}

.offer-card .info .company {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.offer-card .info .position {
    font-size: 11px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.offer-card .info .salary {
    font-size: 11px;
    color: #f97316;
    font-weight: 700;
}

/* 企业Logo墙 */
.logo-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 32px;
}

.logo-item {
    padding: 12px 24px;
    background: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    color: #4b5563;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    opacity: 0.7;
    white-space: nowrap;
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    color: #f97316;
}

/* 三档定价对比表 */
.pricing-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .pricing-table {
        grid-template-columns: 1fr 1.1fr 1fr;
        gap: 0;
    }
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #f97316;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.2);
    z-index: 10;
}

@media (min-width: 1024px) {
    .pricing-card.featured {
        transform: scale(1.05);
    }
}

.pricing-card .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f97316, #eab308);
    color: white;
    padding: 6px 20px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.pricing-card .card-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-card .plan-name {
    font-size: 20px;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 4px;
}

.pricing-card .plan-desc {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
}

.pricing-card .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.pricing-card .price .currency {
    font-size: 18px;
    font-weight: 700;
    color: #f97316;
}

.pricing-card .price .amount {
    font-size: 42px;
    font-weight: 900;
    color: #f97316;
    line-height: 1;
}

.pricing-card .price .unit {
    font-size: 14px;
    color: #9ca3af;
}

.pricing-card .original-price {
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-top: 4px;
}

.pricing-card .scarcity {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    color: #92400e;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pricing-card .scarcity i {
    color: #f97316;
}

.pricing-card .features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-card .features li {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.pricing-card .features li i {
    color: #10b981;
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-card .features li.disabled {
    color: #d1d5db;
}

.pricing-card .features li.disabled i {
    color: #d1d5db;
}

.pricing-card .cta-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-card .cta-btn.outline {
    background: white;
    border: 2px solid #f97316;
    color: #f97316;
}

.pricing-card .cta-btn.outline:hover {
    background: #f97316;
    color: white;
    transform: translateY(-2px);
}

.pricing-card .cta-btn.gradient {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.pricing-card .cta-btn.gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

/* 数据展示大卡片 */
.big-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .big-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.big-stat-card {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
    position: relative;
    overflow: hidden;
}

.big-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #eab308);
}

.big-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.big-stat-card .stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-stat-card .stat-icon i {
    font-size: 24px;
    color: white;
}

.big-stat-card .stat-number {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #f97316, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1.2;
}

.big-stat-card .stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Hero区迷你表单 */
.hero-mini-form {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-top: 24px;
}

.hero-mini-form h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 14px;
    text-align: center;
}

.hero-mini-form h4 i {
    color: #f97316;
    margin-right: 6px;
}

.hero-mini-form .form-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.hero-mini-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 13px;
    outline: none;
    transition: all 0.2s ease;
}

.hero-mini-form input:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.hero-mini-form .submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.hero-mini-form .submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.hero-mini-form .form-tip {
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
    margin-top: 8px;
}

/* 浮动侧边CTA卡片 (文章页用) */
.floating-cta-card {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #f97316;
}

.floating-cta-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 8px;
}

.floating-cta-card p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.floating-cta-card .cta-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.floating-cta-card .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.floating-cta-card .mini-features {
    font-size: 12px;
    color: #6b7280;
}

.floating-cta-card .mini-features li {
    display: flex;
    align-items: center;
    padding: 4px 0;
}

.floating-cta-card .mini-features i {
    color: #10b981;
    margin-right: 8px;
    font-size: 10px;
}

/* 按钮升级 - 统一渐变+阴影+悬浮上移 */
.btn-upgrade {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-upgrade::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-upgrade:hover::before {
    left: 100%;
}

.btn-upgrade:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

/* 利益前置文案 */
.benefit-lead {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    color: #92400e;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.benefit-lead i {
    margin-right: 6px;
    color: #f97316;
}

/* 今日报名赠品模块 */
.today-bonus {
    background: linear-gradient(135deg, #fefce8, #fef3c7);
    border: 2px dashed #fbbf24;
    border-radius: 16px;
    padding: 20px;
    margin-top: 16px;
}

.today-bonus .bonus-title {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 12px;
    font-size: 15px;
}

.today-bonus .bonus-title i {
    color: #f97316;
    margin-right: 8px;
    animation: bonusShake 1s ease-in-out infinite;
}

@keyframes bonusShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.today-bonus .bonus-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.today-bonus .bonus-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #78350f;
}

.today-bonus .bonus-item i {
    color: #f97316;
    margin-right: 8px;
}

.today-bonus .bonus-value {
    margin-left: auto;
    font-weight: 700;
    color: #dc2626;
    font-size: 12px;
}

/* 悬浮客服 - 移动端适配 */
@media (max-width: 768px) {
    .floating-customer-service {
        bottom: 90px;
        right: 16px;
    }
    
    .cs-main-btn {
        width: 56px;
        height: 56px;
    }
    
    .cs-main-btn i {
        font-size: 24px;
    }
    
    .cs-panel {
        width: 260px;
        bottom: 72px;
    }
    
    .realtime-notice {
        left: 16px;
        bottom: 100px;
        max-width: 220px;
        font-size: 12px;
    }
}

/* 滚动时导航栏上移留出横幅空间 */
body.banner-active #navbar {
    top: 40px !important;
}

body.banner-active .hero-gradient {
    padding-top: 40px;
}

body.banner-active .page-banner {
    padding-top: 40px;
}

/* 快速联系卡片 */
.quick-contact-card {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.quick-contact-card:hover {
    border-color: #f97316;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
    transform: translateY(-2px);
}

.quick-contact-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    color: white;
    font-size: 20px;
}

.quick-contact-card .icon.wechat {
    background: linear-gradient(135deg, #10b981, #059669);
}

.quick-contact-card .icon.phone {
    background: linear-gradient(135deg, #f97316, #eab308);
}

.quick-contact-card .icon.email {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.quick-contact-card .icon.clock {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.quick-contact-card .text .title {
    font-weight: 700;
    color: #1f2937;
    font-size: 15px;
    margin-bottom: 2px;
}

.quick-contact-card .text .desc {
    font-size: 13px;
    color: #6b7280;
}

@media (max-width: 640px) {
    .quick-contact-card {
        padding: 12px;
    }
    .quick-contact-card .icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 10px;
    }
    .quick-contact-card .text .title {
        font-size: 13px;
    }
    .quick-contact-card .text .desc {
        font-size: 11px;
    }
}

/* ==================== 内链SEO优化新增样式 ==================== */

/* 标签云 */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tag-cloud-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    background: white;
    border: 2px solid #e5e7eb;
    color: #4b5563;
}

.tag-cloud-item:hover {
    border-color: #f97316;
    color: #f97316;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.15);
}

.tag-cloud-item .count {
    margin-left: 6px;
    font-size: 12px;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 9999px;
    color: #6b7280;
    font-weight: 600;
}

.tag-cloud-item:hover .count {
    background: #f97316;
    color: white;
}

.tag-cloud-item.size-1 { font-size: 14px; }
.tag-cloud-item.size-2 { font-size: 16px; }
.tag-cloud-item.size-3 { font-size: 18px; font-weight: 600; }
.tag-cloud-item.size-4 { font-size: 20px; font-weight: 700; }
.tag-cloud-item.size-5 { font-size: 22px; font-weight: 800; }

/* 标签分类区块 */
.tag-category-section {
    margin-bottom: 40px;
}

.tag-category-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f97316;
    display: inline-block;
}

/* 文章标签区 */
.article-tags-section {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.article-tags-section .tags-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.article-tags-section .tags-label i {
    color: #f97316;
    margin-right: 8px;
}

.article-tags-section .tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* 支柱页面目录 */
.pillar-toc {
    background: linear-gradient(135deg, #f0f4f8, #f9fafb);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 32px;
    border-left: 4px solid #f97316;
}

.pillar-toc h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.pillar-toc h4 i {
    color: #f97316;
    margin-right: 8px;
}

.pillar-toc ol {
    list-style: none;
    counter-reset: toc-counter;
    padding-left: 0;
}

.pillar-toc ol li {
    counter-increment: toc-counter;
    margin-bottom: 10px;
    padding-left: 32px;
    position: relative;
}

.pillar-toc ol li::before {
    content: counter(toc-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #f97316, #eab308);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-toc ol li a {
    color: #334e68;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.pillar-toc ol li a:hover {
    color: #f97316;
}

/* 支柱页面内容集群卡片 */
.cluster-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.cluster-card:hover {
    border-color: #f97316;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
}

.cluster-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.cluster-card:hover h5 {
    color: #f97316;
}

.cluster-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 12px;
}

.cluster-card .cluster-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #9ca3af;
}

.cluster-card .cluster-meta .cluster-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.cluster-card .cluster-meta .cluster-tags span {
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
}

/* 支柱页面章节锚点 */
.pillar-section {
    scroll-margin-top: 80px;
}

/* 文章底部相关推荐增强 */
.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.related-article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.related-article-card:hover {
    border-color: #f97316;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.12);
    transform: translateY(-3px);
}

.related-article-card .ra-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.related-article-card .ra-image .ra-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(249, 115, 22, 0.9);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.related-article-card .ra-image i {
    font-size: 2rem;
    opacity: 0.3;
    color: white;
}

.related-article-card .ra-content {
    padding: 12px;
}

.related-article-card .ra-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-article-card:hover .ra-content h5 {
    color: #f97316;
}

.related-article-card .ra-content p {
    font-size: 12px;
    color: #6b7280;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    margin-bottom: 8px;
}

.related-article-card .ra-content .ra-meta {
    font-size: 11px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 博客列表侧边栏增强 */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

/* 热门标签侧边栏小部件 */
.popular-tags-widget {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.popular-tags-widget a {
    display: inline-block;
    padding: 4px 12px;
    background: #f3f4f6;
    color: #4b5563;
    border-radius: 9999px;
    font-size: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.popular-tags-widget a:hover {
    background: #f97316;
    color: white;
}

/* 面包屑增强 - 文章页增加分类层 */
.breadcrumb-enhanced {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
}

/* 底部导航链接列增强 */
.footer-link-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* 支柱页面顶部CTA条 */
.pillar-cta-bar {
    background: linear-gradient(90deg, #1a365d, #334e68);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.pillar-cta-bar .cta-text {
    color: white;
}

.pillar-cta-bar .cta-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pillar-cta-bar .cta-text p {
    font-size: 14px;
    color: #9fb3c8;
    margin: 0;
}

@media (max-width: 768px) {
    .pillar-cta-bar {
        flex-direction: column;
        text-align: center;
    }

    .related-articles-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
}
