/* cont-page.css — extracted from cont.html (20260718) */
/* 基础样式 */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif; }
        body { background: #ffffff; padding: 0; line-height: 1.65; color: #0f172a; font-size: 15px; }
        a { text-decoration: none; color: #10B981; }
/* 头部导航 */
        .header-nav { background: #fff; border-bottom: 1px solid #f0f2f5; padding: 16px 0; position: sticky; top: 0; z-index: 999; }
        .nav-wrap { display: flex; justify-content: space-between; align-items: center; }
        .logo { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 700; color: #10B981; }
        .logo i { font-size: 24px; }
        .nav-links { display: flex; gap: 32px; }
        .nav-link { font-size: 14px; color: #4b5563; font-weight: 500; transition: all 0.3s; }
        .nav-link:hover, .nav-link.active { color: #10B981; }
        .contact-btn { background: #10B981; color: #fff; padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500; transition: all 0.3s; }
        .contact-btn:hover { background: #0E42D2; color: #fff; }
        
        /* 下拉菜单样式 */
        .dropdown {
            position: relative;
            display: inline-block;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 380px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #e8e8e8;
            transition: all 0.2s ease;
            animation: dropdownSlide 0.2s ease-out;
            padding: 16px 0;
        }
        @keyframes dropdownSlide {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .dropdown-content a {
            color: #0f172a;
            padding: 8px 24px;
            text-decoration: none;
            display: block;
            font-size: 14px;
            transition: all 0.15s ease;
            line-height: 20px;
        }
        .dropdown-content a:hover {
            background-color: #f8fafc;
            color: #10B981;
        }
        .dropdown-content a i {
            margin-right: 8px;
            color: #6b7280;
            font-size: 12px;
            width: 16px;
            text-align: center;
            transition: color 0.15s ease;
        }
        .dropdown-content > div, .dropdown-header {
            padding: 8px 24px 8px;
            font-size: 13px;
            font-weight: 600;
            color: #0f172a;
            margin-top: 8px;
        }
        .dropdown-header:first-child {
            margin-top: 0;
        }
        .dropdown-content > div i, .dropdown-header i {
            margin-right: 8px;
            color: #10B981;
            font-size: 14px;
        }
        .dropdown-content a:hover i {
            color: #10B981;
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }
        .dropdown:hover .dropbtn {
            color: #10B981;
        }
        
        /* 开发模式标签样式 */
        .dev-mode {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            margin-left: 8px;
        }
        .dev-mode.nocode {
            background-color: rgba(0, 180, 42, 0.1);
            color: #10B981;
            border: 1px solid #10B981;
        }
        .dev-mode.lowcode {
            background-color: rgba(16, 185, 129, 0.1);
            color: #10B981;
            border: 1px solid #10B981;
            min-width: 55px;
        }
        .dev-mode.fullcode {
            background-color: rgba(5, 150, 105, 0.1);
            color: #059669;
            border: 1px solid #059669;
        }
        
        /* 开发模式说明区块 */
        .dev-mode-explainer {
            background: #f7f9fc;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0 40px;
            border-left: 4px solid #10B981;
        }
        .dev-mode-explainer h3 {
            font-size: 18px;
            color: #1D2129;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .dev-mode-explainer h3 i {
            color: #10B981;
        }
        .mode-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
            gap: 16px;
        }
        .mode-type {
            background: white;
            border-radius: 6px;
            padding: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .mode-type h4 {
            font-size: 16px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .mode-type p {
            font-size: 14px;
            color: #4b5563;
            margin-bottom: 8px;
        }
        .mode-type ul {
            font-size: 13px;
            color: #4b5563;
            padding-left: 20px;
        }
        .mode-type ul li {
            margin-bottom: 4px;
        }
        
        /* 英雄区 - 明亮商务主题 */
        .hero, .hero#hero {
            background: linear-gradient(160deg, #f0fdf4 0%, #ecfdf5 40%, #f0f9ff 100%);
            padding: 60px 0 44px 0;
            margin-bottom: 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background:
                radial-gradient(ellipse 700px 500px at 5% 80%, rgba(16,185,129,0.08) 0%, transparent 70%),
                radial-gradient(ellipse 500px 400px at 95% 10%, rgba(59,130,246,0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 5%, rgba(16,185,129,0.15) 50%, transparent 95%);
        }
        .hero .container { position: relative; z-index: 1; }
        .hero h1 {
            font-size: 30px;
            font-weight: 800;
            color: #1D2129;
            margin-bottom: 10px;
            line-height: 1.35;
            letter-spacing: -0.5px;
            text-shadow: none;
        }
        .hero-accent {
            background: linear-gradient(135deg, #059669, #10B981);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }
        .hero p {
            font-size: 15px;
            color: #475569;
            max-width: 640px;
            margin: 0 auto 28px auto;
            line-height: 1.65;
            font-weight: 400;
        }
        .hero p strong { color: #059669; }
        .hero-tag-wrap { text-align: center; margin-bottom: 18px; }
        .hero-tag {
            display: inline-block;
            background: rgba(16,185,129,0.08);
            border: 1px solid rgba(16,185,129,0.18);
            color: #059669;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.25s ease;
        }
        .hero-tag i { color: #10B981; margin-right: 4px; }
        .hero-tag:hover {
            background: rgba(16,185,129,0.14);
            transform: translateY(-1px);
        }

        /* 选型卡片网格 */
        .hero-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            margin-bottom: 24px;
        }
        .selection-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            padding: 18px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.25s ease;
            text-align: left;
            position: relative;
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
        }
        .selection-card:hover {
            border-color: #10B981;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(16,185,129,0.12);
        }
        .selection-card::after {
            content: '点击查看对比 →';
            position: absolute;
            bottom: 10px;
            right: 14px;
            font-size: 10px;
            color: #10B981;
            opacity: 0;
            transition: opacity 0.2s ease;
            font-weight: 600;
        }
        .selection-card:hover::after {
            opacity: 1;
        }
        .selection-card .card-head {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        .selection-card .card-icon {
            width: 36px; height: 36px;
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-size: 18px;
            margin-right: 10px;
            flex-shrink: 0;
        }
        .selection-card h3 {
            margin: 0;
            font-size: 15px;
            font-weight: 700;
            color: #1D2129;
        }
        .selection-card .card-desc {
            color: #4b5563;
            font-size: 13px;
            margin: 3px 0;
            line-height: 1.55;
        }
        .selection-card .card-desc strong { color: #374151; }
        .selection-card .card-recommend { color: #059669; font-weight: 600; }
        .selection-card .card-footer {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #f3f4f6;
        }
        .selection-card .card-badge {
            display: inline-block;
            background: #ecfdf5;
            color: #059669;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 600;
        }

        /* Hero CTA按钮 */
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 24px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .hero-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 9px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.25s ease;
            text-decoration: none;
            gap: 6px;
        }
        .hero-button.primary {
            background: linear-gradient(135deg, #10B981 0%, #059669 100%);
            color: #ffffff;
            box-shadow: 0 4px 16px rgba(16,185,129,0.2);
        }
        .hero-button.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(16,185,129,0.35);
        }
        .hero-button.secondary {
            background: #ffffff;
            color: #059669;
            border: 1px solid #d1fae5;
        }
        .hero-button.secondary:hover {
            background: #ecfdf5;
            transform: translateY(-2px);
        }

        .suanShu-highlight { color: #ffffff; font-weight: 700; }
        
        /* 标签切换 - 现代化设计 */
        .tab-nav {
            display: flex;
            border-bottom: 2px solid #e8e8e8;
            margin-bottom: 40px;
            overflow-x: auto;
            gap: 8px;
            padding: 0 4px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .tab-nav::-webkit-scrollbar {
            display: none;
        }
        .tab-item {
            padding: 16px 24px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            color: #4b5563;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
            white-space: nowrap;
            border-radius: 8px 8px 0 0;
            position: relative;
        }
        .tab-item i { margin-right: 8px; }
        .tab-item.active {
            border-bottom: 3px solid #10B981;
            color: #10B981;
            background: linear-gradient(to bottom, rgba(0,180,42,0.05), transparent);
        }
        .tab-item:hover {
            color: #10B981;
            background: rgba(0,180,42,0.02);
        }
        
        /* 内容区域 */
        .tab-content { display: none; animation: fadeIn 0.5s ease; }
        .tab-content.active { display: block; }
        .section-title { font-size: 22px; font-weight: 700; color: #1D2129; margin-bottom: 24px; display: flex; align-items: center; gap: 8px; line-height: 1.4; }
        .section-title i { color: #10B981; }
        
        /* 表格样式 (用于 tab 内容) - 统一定义 */
        .platform-name { font-weight: 600; display: flex; align-items: center; gap: 8px;}
        .platform-name i { font-size: 14px; }
        .platform-name-minWidth {min-width:70px;}
        .value-platform-header {text-align: center !important;}
        /* 算数云高亮样式 */
        .suanShu-row { 
            background: rgba(0, 180, 42, 0.08) !important; /* 更明显的高亮 */
            border-left: 4px solid #10B981; 
        }
        .suanShu-row:hover {
            background: rgba(0, 180, 42, 0.12) !important;
        }
        .suanShu-name { color: #10B981; font-weight: 700; }
        .suanShu-badge { display: inline-block; background: #10B981; color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 12px; margin-left: 8px; }
        
        /* 场景卡片 - 现代化设计 */
        .scene-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            padding: 28px;
            margin-bottom: 28px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0,0,0,0.04);
        }
        .scene-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0,180,42,0.15);
            border-color: rgba(0,180,42,0.2);
        }
        .scene-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #1D2129;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding-bottom: 12px;
            border-bottom: 2px solid #f0f2f5;
        }
        .scene-card h3 i {
            color: #10B981;
            font-size: 22px;
            background: rgba(0,180,42,0.1);
            padding: 8px;
            border-radius: 8px;
        }
        .scene-item { margin-bottom: 12px; font-size: 15px; color: #0f172a; line-height: 1.7; }
        .scene-item strong { color: #1D2129; }
        .scene-item:last-child { margin-bottom: 0; }
        /* 算数云优势卡片 */
        .suanShu-advantage { background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%); border: 1px solid #10B981; }
        .suanShu-advantage h3 { color: #10B981; }
        .suanShu-advantage h3 i { color: #10B981; }
        .advantage-list { margin-top: 16px; }
        .advantage-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
        .advantage-item i { color: #10B981; font-size: 16px; margin-top: 2px; flex-shrink: 0; }
        
        /* 代理服务卡片 - 商务绿色主题 */
        .agent-card {
            background: linear-gradient(135deg, #10B981 0%, #059669 100%);
            border-radius: 16px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
            position: relative;
            overflow: hidden;
        }
        @media (min-width: 769px) {
            .agent-card { padding: 36px; margin: 50px 0; }
        }
        .agent-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .agent-card h3 {
            font-size: 1rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            z-index: 1;
        }
        .agent-card h3 i {
            font-size: 1.1rem;
            background: rgba(255,255,255,0.2);
            padding: 8px;
            border-radius: 8px;
        }
        @media (min-width: 769px) {
            .agent-card h3 { font-size: 1.5rem; margin-bottom: 24px; gap: 12px; }
            .agent-card h3 i { font-size: 1.75rem; padding: 10px; border-radius: 10px; }
        }
        .agent-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            position: relative;
            z-index: 1;
        }
        .agent-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 12px;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.25);
        }
        .agent-item i {
            color: #ffffff;
            font-size: 0.85rem;
            margin-top: 2px;
            flex-shrink: 0;
            background: rgba(255,255,255,0.2);
            padding: 6px;
            border-radius: 6px;
        }
        .agent-item p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.95);
            line-height: 1.5;
        }
        @media (min-width: 769px) {
            .agent-item { gap: 14px; padding: 16px; }
            .agent-item i { font-size: 1.25rem; padding: 8px; border-radius: 8px; }
            .agent-item p { font-size: 0.95rem; line-height: 1.6; }
        }
        .contact-info {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 2px solid rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .contact-info .phone {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            font-weight: 700;
            color: #ffffff;
            background: rgba(255,255,255,0.2);
            padding: 8px 14px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
            width: 100%;
            justify-content: center;
        }
        .contact-info .btn {
            background: #ffffff;
            color: #10B981;
            padding: 10px 16px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            flex: 1;
            text-align: center;
        }
        @media (min-width: 769px) {
            .contact-info { margin-top: 28px; padding-top: 28px; gap: 20px; }
            .contact-info .phone { font-size: 1.1rem; gap: 10px; padding: 12px 20px; border-radius: 10px; width: auto; }
            .contact-info .btn { padding: 12px 24px; border-radius: 10px; font-size: 0.95rem; flex: none; }
        }
        .contact-info .btn:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        .suanShu-btn { background: #ffffff !important; color: #10B981 !important; }
        .suanShu-btn:hover { background: #f0f0f0 !important; }
        
        /* 底部 优化结构和样式 */
        .footer { background: #f7f9fc; padding: 60px 0 30px; margin-top: 60px; }
        .footer-wrap { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; } /* 使用 Flex 布局 */
        .footer-col {
            flex: 1; 
            min-width: 200px;
        }
        .footer-logo { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 700; color: #10B981; margin-bottom: 16px; }
        .footer-logo i { font-size: 24px; }
        .footer-desc { font-size: 14px; color: #4b5563; line-height: 1.8; margin-bottom: 20px; }
        .footer-title { 
            font-size: 16px; 
            font-weight: 600; 
            color: #1D2129; 
            margin-bottom: 16px; 
            position: relative; 
            padding-bottom: 8px; /* 增加底部间距 */
        }
        .footer-title::after { /* 标题下划线 */
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background: #10B981;
        }
        .footer-links { list-style: none; padding-left: 0;}
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { font-size: 14px; color: #4b5563; transition: all 0.3s; }
        .footer-links a:hover { color: #10B981; text-decoration: underline; }
        .copyright { text-align: center; font-size: 12px; color: #6b7280; margin-top: 40px; padding-top: 20px; border-top: 1px solid #f0f2f5; }
        
        /* 低代码对比模块 (核心优化区域) */
        .lowcode-compare-section {
            width: 100%;
            max-width: 100%;
            margin: 40px 0;
            padding: 0;
            border-radius: 12px;
            box-sizing: border-box;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1); /* 增强阴影 */
            overflow: visible;
            background: #fff;
        }
        .compare-header {
            background: linear-gradient(135deg,#10B981 0%,#059669 100%);
            padding: 28px; /* 更多内边距 */
            text-align: center;
        }
        .compare-header h2 {
            font-size: 28px;
            color: #fff;
            margin: 0;
            font-weight: 700;
            letter-spacing: 0.8px;
            line-height: 1.35;
        }
        .compare-header p {
            font-size: 15px;
            color: rgba(255,255,255,0.92);
            margin: 8px 0 0 0;
            line-height: 1.6;
        }
        .compare-section {
            padding: 30px 24px; /* 增加内边距 */
            border-bottom: 1px solid #f0f2f5;
        }
        .compare-section--alt {
            background: #f9fafb;
            border-radius: 10px;
            margin-top: 8px;
        }
        .compare-section:last-child {
            border-bottom: none;
        }
        .section-header { /* 内部小标题样式 */
            font-size: 22px;
            color: #1D2129;
            margin: 0 0 24px 0;
            font-weight: 700;
            display: flex;
            align-items: center;
            line-height: 1.4;
        }
        .section-header span { /* 小标题左侧分隔线 */
            display: inline-block;
            width: 4px;
            height: 22px;
            background: #10B981;
            margin-right: 10px;
            border-radius: 2px;
        }
        .table-wrap {
            overflow-x: auto;
            overflow-y: visible;
            border-radius: 8px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.08);
            margin: 0;
            padding: 0 0 4px;
            max-width: 100%;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: #10B981 #f0f0f0;
        }
        .table-wrap::-webkit-scrollbar {
            height: 8px;
        }
        .table-wrap::-webkit-scrollbar-thumb {
            background: #10B981;
            border-radius: 4px;
        }
        .table-wrap::-webkit-scrollbar-track {
            background: #f0f0f0;
        }
        .custom-table {
            width: max-content;
            min-width: 100%;
            border-collapse: collapse;
            background: #fff;
            table-layout: auto;
        }
        .custom-table thead tr {
            background: #f7f9fc;
        }
        .custom-table th, .custom-table td {
            padding: 16px 14px;
            border: 1px solid #e8e8e8;
            font-size: 14px;
            color: #2d3748;
            text-align: center;
            line-height: 1.6;
            word-wrap: break-word;
            word-break: break-word;
            overflow-wrap: break-word;
            min-width: 112px;
            vertical-align: top;
        }
        /* P0：首列 sticky 冻结，横向滚动时维度名常驻 */
        .custom-table th:first-child,
        .custom-table td:first-child {
            position: sticky;
            left: 0;
            z-index: 4;
            background-color: #fff;
            box-shadow: 2px 0 6px -3px rgba(0,0,0,0.12);
        }
        .custom-table thead th { background-color: #f7f9fc; }
        .custom-table thead th:first-child { z-index: 6; background-color: #f7f9fc; }
        .custom-table tr.suanShu-row-compare td:first-child { background-color: #effbf4; }
        .custom-table tr.suanShu-row td:first-child { background-color: #effbf4; }
        .custom-table tr.highlight-row td:first-child { background-color: #f5f6f7; }
        .custom-table tr:hover td:first-child { background-color: #f8fafc; }
        .custom-table th:first-child, .custom-table td:first-child {
            text-align: left;
            font-weight: 600;
            padding-left: 24px;
            padding-right: 18px;
            min-width: 100px;
        }
        .custom-table td {
            color: #4a5568;
            font-weight: 500;
            transition: background-color 0.2s;
        }
        .custom-table tr:hover {
            background-color: #f8fafc !important;
        }
        .highlight-row { /* 简道云高亮 */
            background: #f5f6f7;
        }
        .suanShu-row-compare { /* 算数云高亮 */
            background: rgba(0, 180, 42, 0.05); 
            border-left: 4px solid #10B981;
        }
        .suanShu-row-compare .suanShu-name-compare {
            color: #10B981;
            font-weight: 700;
        }
        
        /* 星星评分基础样式 - 统一颜色 */
        .star-rating {
            font-size: 16px;
            font-weight: bold;
            color: #10B981; /* 统一使用绿色 */
            text-shadow: 0 0 3px rgba(0, 180, 42, 0.5); /* 统一使用绿色阴影 */
            transition: all 0.3s ease;
        }
        
        /* 保持不同评分等级的可区分性 - 通过不同的视觉效果 */
        /* 5星评分样式 */
        .star-rating-5 {
            opacity: 1;
            transform: scale(1.1);
        }
        
        /* 4星评分样式 */
        .star-rating-4 {
            opacity: 0.9;
            transform: scale(1);
        }
        
        /* 3星评分样式 */
        .star-rating-3 {
            opacity: 0.8;
            transform: scale(0.95);
        }
        
        /* 2星评分样式 */
        .star-rating-2 {
            opacity: 0.7;
            transform: scale(0.9);
        }
        
        /* 1星评分样式 */
        .star-rating-1 {
            opacity: 0.6;
            transform: scale(0.85);
        }
        
        /* 鼠标悬停效果 */
        .star-rating:hover {
            opacity: 1;
            transform: scale(1.15);
            text-shadow: 0 0 8px rgba(0, 180, 42, 0.8);
        }
        /* 选型建议卡片样式 */
        .selection-advice ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
            gap: 15px;
        }
        .selection-advice li {
            background: #f7f9fc;
            border-radius: 6px;
            padding: 16px 18px;
            margin-bottom: 0; /* 移除原来的margin */
            border-left: 4px solid #10B981;
            font-size: 15px;
            line-height: 1.7;
            transition: all 0.3s;
            box-shadow: 0 1px 4px rgba(0,0,0,0.05);
        }
        .selection-advice li:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-left: 4px solid #10B981; /* 鼠标悬停高亮到算数云色 */
            transform: translateY(-2px);
        }
        .selection-advice li strong {
            font-weight: 700;
            margin-right: 5px;
        }


        /* 表格样式 (用于 tab 内容) 优化间距和阴影 */
        .compare-table { 
            width: 100%; 
            border-collapse: collapse; 
            background: #fff; 
            border-radius: 8px; 
            overflow: hidden; 
            box-shadow: 0 4px 16px rgba(0,0,0,0.06); /* 稍微加强阴影 */
            margin-bottom: 30px; 
        }
        .compare-table th { 
            background: #f7f9fc; 
            padding: 14px 16px; /* 优化内边距 */
            text-align: left; 
            font-size: 15px; 
            font-weight: 600; 
            color: #1D2129; 
            border-bottom: 1px solid #f0f2f5; 
        }
        .compare-table td { 
            padding: 14px 16px; /* 优化内边距 */
            font-size: 14px; 
            color: #0f172a; 
            line-height: 1.65;
            border-bottom: 1px solid #f0f2f5; 
        }
        .compare-table tr:last-child td { border-bottom: none; }
        .compare-table tr:hover { background: #fafbff; }
        
        /* 响应式 - 全面移动端优化 */
        @media (max-width: 992px) {
            .hero, .hero#hero {
                padding: 48px 0 36px 0;
            }
            .hero h1 {
                font-size: 26px;
            }
            .hero p {
                font-size: 13px;
                padding: 0 16px;
            }
            .hero-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .tab-item {
                padding: 14px 20px;
                font-size: 14px;
            }
            .compare-table th, .compare-table td {
                padding: 12px 14px;
                font-size: 14px;
            }
            .custom-table th, .custom-table td {
                padding: 12px 10px;
                font-size: 13px;
            }
            .custom-table th:first-child, .custom-table td:first-child {
                padding-left: 16px;
                padding-right: 14px;
            }
            .agent-list {
                grid-template-columns: 1fr;
            }
            .mode-types {
                grid-template-columns: 1fr;
            }
            .selection-advice ul {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 16px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .hero, .hero#hero {
                padding: 70px 0 28px 0;
            }
            .hero h1 {
                font-size: 22px;
                margin-bottom: 8px;
            }
            .hero p {
                font-size: 13px;
                margin-bottom: 20px;
                line-height: 1.6;
            }
            .hero-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .selection-card {
                padding: 14px;
            }
            .selection-card .card-icon {
                width: 30px; height: 30px;
                font-size: 15px;
            }
            .selection-card h3 {
                font-size: 14px;
            }
            .selection-card .card-desc {
                font-size: 12px;
            }
            /* Hero按钮平板竖屏 2x2 */
            .hero-buttons {
                grid-template-columns: 1fr 1fr !important;
                max-width: 420px !important;
                gap: 8px !important;
            }
            .hero-button {
                padding: 8px 12px;
                font-size: 12px;
            }
            .section-title, .section-header {
                font-size: 19px;
            }
            .scene-card {
                padding: 20px;
            }
            .agent-card {
                padding: 20px;
            }
            .contact-info {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            .custom-table th, .custom-table td {
                padding: 10px 8px;
                font-size: 12px;
            }
            .custom-table th:first-child, .custom-table td:first-child {
                padding-left: 12px;
                padding-right: 10px;
            }
            .table-wrap {
                margin: 0;
                padding: 0;
            }
            .tab-nav {
                margin-bottom: 30px;
            }
            .tab-item {
                padding: 12px 16px;
                font-size: 13px;
            }
            .lowcode-compare-section {
                margin: 30px 0;
            }
            .compare-section {
                padding: 24px 16px;
            }
            /* 模块间分隔线平板适配 */
            .compare-section + .compare-section::before {
                margin: 0 0 20px;
            }
        }
        @media (max-width: 576px) {
            /* ===== Hero 区域 ===== */
            .hero, .hero#hero {
                padding: 28px 0 20px 0;
            }
            .hero h1 {
                font-size: 19px;
                line-height: 1.4;
            }
            .hero p {
                font-size: 12px;
                line-height: 1.6;
            }
            .hero-tag {
                padding: 4px 12px;
                font-size: 10px;
            }
            .hero-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .selection-card {
                padding: 10px 12px;
                min-height: 0;
            }
            .selection-card .card-icon {
                width: 26px; height: 26px;
                font-size: 13px;
                margin-right: 8px;
                flex-shrink: 0;
            }
            .selection-card h3 {
                font-size: 12px;
                line-height: 1.3;
            }
            .selection-card .card-desc {
                font-size: 10px;
                line-height: 1.4;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            .hero-buttons {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 8px !important;
                max-width: 100% !important;
            }
            .hero-button {
                width: 100%;
                justify-content: center;
                padding: 11px 8px;
                font-size: 12px;
                min-height: 44px;
            }

            /* ===== Tab 导航 ===== */
            .tab-nav {
                gap: 4px;
                padding: 0 2px;
                margin-bottom: 20px;
            }
            .tab-item {
                padding: 9px 10px;
                font-size: 11px;
                border-radius: 6px 6px 0 0;
                white-space: nowrap;
            }
            .tab-item i {
                margin-right: 4px;
                font-size: 11px;
            }

            /* ===== 价格表 compare-table ===== */
            .compare-table {
                font-size: 11px;
                min-width: 580px;   /* 强制最小宽，首列加宽后同步扩大 */
            }
            .compare-table th, .compare-table td {
                padding: 8px 6px;
                font-size: 11px;
                white-space: normal;
                word-break: break-all;
            }
            .compare-table th:first-child,
            .compare-table td:first-child {
                min-width: 100px;
                max-width: 120px;
                width: 110px;
                position: sticky;
                left: 0;
                background: #fff;
                z-index: 101;
                box-shadow: 2px 0 4px rgba(0,0,0,0.06);
                white-space: normal;
                word-break: break-all;
                overflow-wrap: break-word;
                line-height: 1.4;
            }
            .compare-table thead th:first-child {
                background: #f7f9fc;
                z-index: 102;
            }
            .suanShu-row td:first-child {
                background: rgba(0,180,42,0.08);
            }
            /* 内容单元格自动换行 */
            .compare-table td {
                min-width: 80px;
            }

            /* ===== 容量大表 custom-table ===== */
            .custom-table {
                min-width: 480px;   /* 强制最小宽，保证可横滑 */
            }
            .custom-table th, .custom-table td {
                padding: 7px 5px;
                font-size: 10px;
                min-width: 56px;
            }
            .custom-table th:first-child,
            .custom-table td:first-child {
                padding-left: 10px;
                padding-right: 6px;
                min-width: 90px;
                max-width: 100px;
                position: sticky;
                left: 0;
                background: #fff;
                z-index: 101;
                box-shadow: 2px 0 4px rgba(0,0,0,0.06);
            }
            .custom-table thead th:first-child {
                background: #f7f9fc;
                z-index: 102;
            }
            .suanShu-row-compare td:first-child {
                background: rgba(0,180,42,0.05);
            }
            /* 分组小标题行 */
            .custom-table .group-header td {
                position: sticky;
                left: 0;
                background: #f0fdf4 !important;
            }

            /* ===== 表包装提示 ===== */
            .table-wrap {
                margin: 0;
                padding: 0;
                border-radius: 8px;
            }
            /* 滚动提示条 */
            .table-wrap::after {
                content: '左右滑动可查看全部列';
                display: block;
                text-align: center;
                font-size: 10px;
                color: #aaa;
                padding: 6px 0 2px;
                letter-spacing: .5px;
            }

            /* ===== 区域标题、标题区 ===== */
            .section-title, .section-header {
                font-size: 15px;
            }
            .compare-header {
                padding: 16px 12px;
            }
            .compare-header h2 {
                font-size: 17px;
            }
            .compare-header p {
                font-size: 12px;
            }
            .compare-section {
                padding: 16px 12px;
            }

            /* ===== 场景卡片 ===== */
            .scene-card {
                padding: 16px;
            }
            .scene-card h3 {
                font-size: 16px;
            }

            /* ===== 代理服务卡 ===== */
            .agent-card {
                padding: 16px;
                margin: 28px 0;
                border-radius: 12px;
            }
            .agent-card h3 {
                font-size: 16px;
                margin-bottom: 16px;
            }
            .agent-card h3 i {
                font-size: 1.2rem;
                padding: 6px;
            }
            .agent-item {
                padding: 12px;
                gap: 10px;
            }
            .agent-item p {
                font-size: 0.85rem;
            }
            .contact-info {
                gap: 10px;
                margin-top: 20px;
                padding-top: 16px;
            }
            .contact-info .phone {
                font-size: 0.95rem;
                padding: 10px 14px;
            }
            .contact-info .btn {
                font-size: 0.85rem;
                padding: 10px 16px;
            }

            /* ===== 底部 ===== */
            .footer-wrap {
                grid-template-columns: 1fr;
            }
            .footer {
                padding: 32px 0 20px;
                margin-top: 40px;
            }

            /* ===== 平台名列 ===== */
            .platform-name {
                flex-direction: column;
                align-items: flex-start;
                gap: 2px;
            }
            .dev-mode {
                margin-left: 0;
                margin-top: 3px;
                font-size: 10px;
            }

            /* ===== 容器两侧边距 ===== */
            .container {
                padding: 0 12px;
            }

            /* ===== 移动端美观增强 ===== */
            /* Hero按钮 2x2 网格适配小屏 */
            .hero-buttons {
                grid-template-columns: 1fr 1fr !important;
                max-width: 100% !important;
                gap: 8px !important;
                padding: 0 4px;
            }
            .hero-button {
                font-size: 12px !important;
                padding: 10px 8px !important;
                min-height: 42px;
                border-radius: 8px;
            }

            /* 模块间视觉分层 */
            .compare-section + .compare-section::before {
                height: 8px;
                margin: 0 0 18px;
                background: linear-gradient(180deg, #edf0f3 0%, #f8f9fb 100%);
            }

            /* 标题增强: 左侧绿竟 + 背景 + 重量 */
            .section-header {
                font-size: 16px !important;
                padding: 10px 12px !important;
                margin: 0 0 16px !important;
                border-radius: 6px;
                background: linear-gradient(90deg, rgba(0,180,42,0.06) 0%, rgba(0,180,42,0.01) 70%, transparent 100%) !important;
                line-height: 1.4;
            }
            .section-header span {
                width: 4px;
                height: 18px;
                min-width: 4px;
                margin-right: 8px;
                border-radius: 2px;
                background: #10B981;
            }

            /* 表格内单元格距离紧凑 */
            .custom-table th, .custom-table td {
                padding: 8px 5px !important;
                font-size: 10.5px !important;
                line-height: 1.5 !important;
            }
            .custom-table th:first-child, .custom-table td:first-child {
                font-size: 11px !important;
                line-height: 1.4 !important;
            }

            /* 表格高亮单元格加粗加大字号 */
            .highlight-unlimited, .highlight-limit, .highlight-pricing, .highlight-lowest {
                font-size: 11px !important;
                font-weight: 700 !important;
            }

            /* 选型建议卡片移动端 */
            .selection-advice li {
                padding: 12px;
                font-size: 13px;
                line-height: 1.6;
            }

            /* Agent卡片移动端 */
            .agent-card h3 {
                font-size: 15px !important;
                gap: 8px;
                flex-wrap: wrap;
            }
            .agent-item p {
                font-size: 13px !important;
                line-height: 1.5;
            }

            /* 底部移动端居中 */
            .footer {
                text-align: center;
            }
            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .footer-links {
                text-align: center;
            }
            .footer-wrap {
                flex-direction: column;
                align-items: center;
                gap: 24px;
            }
            .footer-col {
                text-align: center;
                min-width: auto;
                width: 100%;
            }
            .footer-logo {
                justify-content: center;
            }

            /* 底部导航占位 - 避免内容被遮挡 */
            body {
                padding-bottom: 52px;
            }

            /* 星级评分移动端缩小 */
            .star-rating {
                font-size: 13px !important;
            }

            /* 关键发现提示块 */
            div[style*="background:#f0f9ff"] p,
            div[style*="background: #f0f9ff"] p {
                font-size: 12px !important;
                line-height: 1.7 !important;
            }

            /* 版本对比表格(9~13) 移动端优化 */
            .version-compare .custom-table,
            .scene-compare .custom-table {
                min-width: 520px;
            }
        }
        
        /* 动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        /* 星级样式优化 */
        td[style*="color:#10B981"], td[style*="color:#10B981"], td[style*="color:#059669"] { 
            text-shadow: 0 1px 2px rgba(0,0,0,0.05); 
            letter-spacing: 1px; 
        }

        /* ===== 移动端全局美化 ===== */
        /* 模块间分隔线 + 呼吸间距 */
        .compare-section {
            position: relative;
        }
        .compare-section + .compare-section::before {
            content: '';
            display: block;
            height: 6px;
            background: linear-gradient(180deg, #f0f2f5 0%, #f8f9fb 100%);
            margin: 0 0 24px;
            border-top: 1px solid #e8ecf0;
        }
        /* section-header 增强视觉层级 */
        .section-header {
            background: linear-gradient(90deg, rgba(0,180,42,0.04) 0%, transparent 60%);
            padding: 12px 14px;
            border-radius: 8px;
            margin-left: 0;
            margin-right: 0;
        }
        /* 关键发现提示块增强 */
        div[style*="background:#f0f9ff"], div[style*="background: #f0f9ff"] {
            border-radius: 10px !important;
            margin-top: 20px !important;
        }

        /* ===== 企微联系+售后保障区 ===== */
        .contact-after-sale {
            padding: 48px 0 40px;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: 36px;
            align-items: stretch; /* 左右两栏等高 */
        }
        .qrcode-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }
        .service-channels {
            min-width: 0;
        }
        /* 平板适配 */
        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 320px 1fr;
                gap: 24px;
            }
        }
        /* 平板竖屏+手机：单栏堆叠 */
        @media (max-width: 768px) {
            .contact-after-sale {
                padding: 32px 0 28px;
            }
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .qrcode-card {
                position: static;
                max-width: 400px;
                margin: 0 auto;
            }
        }
        @media (max-width: 576px) {
            .contact-after-sale {
                padding: 24px 0 20px;
            }
            .contact-grid {
                gap: 20px;
            }
            .qrcode-card {
                max-width: 100%;
            }
            .service-channels h3 {
                font-size: 18px !important;
            }
            .service-channels h4 {
                font-size: 14px !important;
            }
        }

/* --- cont.html extracted --- */

/* 侧边导航样式 */
        .side-nav {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border-left: 2px solid #10B981;
            border-radius: 8px 0 0 8px;
            box-shadow: -4px 0 16px rgba(0,0,0,0.1);
            z-index: 1000;
            max-height: min(400px, calc(100vh - 160px));
            overflow-y: auto;
            display: none;
        }
        .side-nav.active {
            display: block;
        }
        .side-nav-item {
            padding: 10px 16px;
            border-left: 3px solid transparent;
            cursor: pointer;
            font-size: 13px;
            color: #4b5563;
            transition: all 0.3s;
            white-space: nowrap;
        }
        .side-nav-item:hover {
            background: #f8fafc;
            color: #10B981;
            border-left-color: #10B981;
        }
        .side-nav-item.active {
            background: #e8f5e9;
            color: #10B981;
            border-left-color: #10B981;
            font-weight: 600;
        }

        /* 移动端底部导航 */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-top: 2px solid #10B981;
            box-shadow: 0 -2px 12px rgba(0,0,0,0.10);
            z-index: 9999 !important;   /* 高于水印层(100) */
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: env(safe-area-inset-bottom, 0); /* iPhone刺屏适配 */
        }
        .mobile-bottom-nav::-webkit-scrollbar { display: none; }
        .mobile-bottom-nav.active {
            display: flex !important;
        }
        .mobile-nav-item {
            flex-shrink: 0;
            padding: 10px 14px;
            font-size: 13px;
            color: #4b5563;
            border-bottom: 3px solid transparent;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }
        .mobile-nav-item.active {
            color: #10B981;
            border-bottom-color: #10B981;
            font-weight: 600;
        }

        /* 表格颜色标注 */
        .highlight-pricing { background: #fff8e8 !important; color: #FFB800; font-weight: 600; }
        .highlight-lowest { background: #e8f5e9 !important; color: #10B981; font-weight: 600; }
        .highlight-limit { background: #ffe8e8 !important; color: #FF6B6B; font-weight: 600; }
        .highlight-unlimited { background: #e8f0ff !important; color: #0E42D2; font-weight: 600; }

        /* 对比条形图 */
        .bar-chart {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .bar-chart-label {
            min-width: 60px;
            font-size: 12px;
            color: #4b5563;
        }
        .bar-chart-bar {
            flex: 1;
            height: 8px;
            background: #f0f0f0;
            border-radius: 4px;
            overflow: hidden;
        }
        .bar-chart-fill {
            height: 100%;
            background: linear-gradient(90deg, #10B981, #10B981);
            border-radius: 4px;
        }
        .bar-chart-value {
            min-width: 40px;
            font-size: 12px;
            color: #1D2129;
            font-weight: 600;
            text-align: right;
        }

        /* 汉堡菜单样式 */
        .burger-menu {
            width: 24px;
            height: 18px;
            position: relative;
            cursor: pointer;
        }
        .burger-bar {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: #1D2129;
            border-radius: 2px;
            opacity: 1;
            left: 0;
            transition: .25s ease-in-out;
        }
        .burger-bar:nth-child(1) { top: 0; }
        .burger-bar:nth-child(2) { top: 8px; }
        .burger-bar:nth-child(3) { top: 16px; }
        .burger-menu.active .burger-bar:nth-child(1) { top: 8px; transform: rotate(135deg); }
        .burger-menu.active .burger-bar:nth-child(2) { opacity: 0; left: -60px; }
        .burger-menu.active .burger-bar:nth-child(3) { top: 8px; transform: rotate(-135deg); }

        /* 移动端菜单样式 */
        #mobileMenu { max-height: 80vh; overflow-y: auto; background: #fff; border-top: 1px solid #e5e7eb; }
        .mobile-nav-group { border-bottom: 1px solid #f3f4f6; padding-bottom: .5rem; }
        .mobile-nav-toggle { width:100%; display:flex; align-items:center; justify-content:space-between; padding:.75rem 0; font-size:1rem; font-weight:600; color:#1f2937; background:none; border:none; cursor:pointer; transition:color .3s; }
        .mobile-nav-toggle:hover { color:#10b981; }
        .mobile-nav-toggle .fa-angle-down { transition:transform .3s; }
        .mobile-nav-content { padding-left:.75rem; margin-top:.5rem; }
        .mobile-nav-content.hidden { display:none; }

        /* 导航栏 z-index 必须高于水印层(z-index:100)，否则汉堡菜单被覆盖 */
        #navbar { z-index: 9999 !important; }
        /* 汉堡按钮保护 */
        #mobileBurgerWrap {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            z-index: 99999 !important;
        }
        /* 响应式：平板和手机隐藏桌面侧边导航 */
        @media (max-width: 1024px) {
            .side-nav { display: none !important; }
        }
        /* 移动端底部锁点导航 */
        @media (max-width: 1024px) {
            .mobile-bottom-nav { display: flex !important; }
        }

        /* 成功案例微缩版（信任背书） */
        .case-mini-section { padding: 36px 0; background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%); border-radius: 16px; margin: 24px 0; }
        .case-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
        @media (max-width: 1024px) { .case-mini-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 640px) { .case-mini-grid { grid-template-columns: 1fr; } }
        .case-mini-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 14px; transition: all 0.25s; }
        .case-mini-card:hover { border-color: #10B981; box-shadow: 0 6px 16px rgba(16,185,129,0.12); transform: translateY(-2px); }
        .case-mini-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
        .case-mini-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #fff; flex-shrink: 0; }
        .case-mini-tag { font-size: 11px; color: #6b7280; font-weight: 500; }
        .case-mini-title { font-size: 13.5px; font-weight: 700; color: #1D2129; margin: 0 0 6px; line-height: 1.45; }
        .case-mini-result { font-size: 12px; color: #059669; font-weight: 600; line-height: 1.5; }
        .case-mini-platform { display: inline-block; font-size: 11px; color: #4b5563; background: #f3f4f6; padding: 2px 8px; border-radius: 10px; margin-top: 6px; }

/* 桌面端：章节目录与右侧企微悬浮（z-index 997）错开，避免遮挡 */
@media (min-width: 1025px) {
    body.lc-compare-page.cont-page .side-nav.active {
        right: 156px;
    }
    body.lc-compare-page.cont-page .wecom-float {
        bottom: 24px;
    }
}
