* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #ffffff;
            color: #1F2937;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        /* 自定义滚动与平滑 */
        ::selection {
            background: #0A66C2;
            color: white;
        }

        /* 配色变量 */
        :root {
            --primary-dark: #0A2540;
            --primary-blue: #2E7D32;
            --accent-blue: #2EBD32;
            --gray-light: #F7F9FC;
            --gray-border: #E5E9F0;
            --text-dark: #111827;
            --text-muted: #4B5563;
            --white: #ffffff;
            --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            --shadow-md: 0 20px 25px -12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 25px 35px -16px rgba(46,125,50,0.15);
            --transition-base: all 0.25s ease;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 按钮样式 */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            transition: 0.25s ease;
            cursor: pointer;
            border: none;
            font-size: 0.95rem;
        }

        .btn-primary {
            background: var(--primary-blue);
            color: white;
            box-shadow: 0 2px 8px rgba(46,125,50,0.3);
        }

        .btn-primary:hover {
			background: #1B5E20;
			transform: translateY(-2px);
			box-shadow: 0 12px 20px -10px rgba(46,125,50,0.5);
        }
		

        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--primary-blue);
            color: var(--primary-blue);
        }

        .btn-outline:hover {
            background: var(--primary-blue);
            color: white;
        }

        /* 头部导航 */
        header {
            background: #FFFFFF;
            box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 1px 0 rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(0px);
            background: rgba(255,255,255,0.96);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 1.7rem;
            font-weight: 800;
            background: linear-gradient(135deg, #2E7D32,#f57c00);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }
        .logo span {
            background: none;
            color: #f57c00;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }
		.nav-links .btn-outline:hover{
			color: white;
			font-weight: 600;
		}

        .menu-toggle {
            display: none;
            font-size: 1.6rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #0A2540;
        }

        /* Hero 区域 */
        .hero {
            background: linear-gradient(135deg, #F0F7FF 0%, #ffffff 100%);
            padding: 4rem 0 5rem 0;
            border-bottom: 1px solid #E5E9F0;
        }
        .hero-solutions {
            background: linear-gradient(135deg, #EFF5EC 0%, #FFFFFF 100%);
            padding: 3rem 0 4rem;
            /* border-radius: 0 0 48px 48px; */
            margin-bottom: 2rem;
        }
        .hero-grid {
            display: flex;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .hero-content {
            flex: 1.2;
        }

        .hero-badge {
            background: #E8F0FE;
            color: var(--primary-blue);
            display: inline-block;
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .hero-content h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: #0A2540;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #4B5563;
            max-width: 550px;
            margin-bottom: 2rem;
        }

        .hero-stats {
            flex: 0.8;
            background: white;
            padding: 1.8rem;
            border-radius: 32px;
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
        }
         .hero-banner {
            background: linear-gradient(135deg, #EFF5EC 0%, #FFFFFF 100%);
            /* border-radius: 32px; */
            padding: 3rem 2rem;
            margin: 0 0 1rem 0rem;
            text-align: center;
        }
        .hero-banner h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--dark-text);
        }
        .hero-banner p {
            font-size: 1.1rem;
            color: #5B6E8C;
            max-width: 600px;
            margin: 0 auto 1.5rem;
        }
        .stat-item h3 {
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--primary-blue);
        }

        /* 通用section样式 */
        section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #0A2540;
        }
        .section-sub {
            text-align: center;
            color: #4B5563;
            max-width: 700px;
            margin: 0 auto 3rem auto;
            font-size: 1.1rem;
        }

        /* 服务卡片网格 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 24px;
            padding: 1.8rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
            border: 1px solid #E5E9F0;
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px -15px rgba(0,0,0,0.1);
            border-color: #CDE5FF;
        }
        .service-icon {
            font-size: 2.6rem;
            color: #2E7D32;;
            margin-bottom: 1.2rem;
        }
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .service-list {
            list-style: none;
            margin-top: 1rem;
        }
        .service-list li {
            margin: 0.7rem 0;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #4B5563;
        }
        .service-list i {
            font-size: 0.8rem;
			color: #F57C00;
            width: 18px;
        }

        /* 出海特别专区 */
        .overseas-section {
            background: #F7F9FC;
            border-radius: 48px;
            margin: 2rem 0;
            padding: 3rem 2rem;
        }
        .overseas-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        .overseas-text {
            flex: 1;
        }
        .overseas-text h2 {
            font-size: 1.9rem;
            margin-bottom: 1rem;
        }
        .overseas-badge-grid {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
            gap: 1rem;
        }
        .badge-item {
            background: white;
            border-radius: 60px;
            padding: 0.6rem 1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }
		.badge-item i{
			color:#f57c00;
		}

        /* 新媒体矩阵区块 */
        .media-matrix {
            background: linear-gradient(110deg, #ffffff 0%, #F5F9FF 100%);
            border-radius: 32px;
            padding: 2.5rem;
            margin: 2rem 0;
        }

        .matrix-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
            gap: 1.8rem;
            margin-top: 2rem;
        }
		.matrix-grid div i{
			color:#f57c00;
			width: 1.5rem;
		}

        /* 整合营销板块 */
        .integrate-box {
            /* background: #0A2540; */
			background: #1B5E20;
            color: white;
            border-radius: 32px;
            padding: 3rem 2.5rem;
            text-align: center;
        }
        .integrate-box h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        .integrate-box p {
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* 技术赋能 */
        .tech-features {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            margin-top: 2rem;
        }
        .tech-card {
            background: white;
            padding: 1.5rem;
            border-radius: 28px;
            text-align: center;
            width: 220px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            border: 1px solid #E5E9F0;
        }
		.tech-card i{
			font-size: 1rem; 
			color:#2E7D32;
		}

        .search-box {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 8px;
            background: #ffffff;
            border-radius: 60px;
            padding: 4px 4px 4px 20px;
            border: 1px solid #E9EDF2;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03), 0 2px 4px rgba(0,0,0,0.05);
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 12px 0;
            font-size: 0.9rem;
            outline: none;
            background: transparent;
        }
        .search-box button {
            background: #2E7D32;
            border: none;
            padding: 8px 24px;
            border-radius: 40px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
        }
        .search-box button:hover {
            background: #1B5E20;
        }

        /* 分类标签栏 */
        .category-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 2rem 0 1.5rem;
            border-bottom: 1px solid #E9EDF2;
            padding-bottom: 0.5rem;
        }
        .cat-tab {
            cursor: pointer;
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
            background: transparent;
            color: #5B6E8C;
        }
        .cat-tab.active, .cat-tab:hover {
            background: #2E7D32;
            color: white;
        }

        /* 课程网格 */
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 28px;
            margin: 2rem 0;
        }
        .course-card {
            background: #ffffff;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03), 0 2px 4px rgba(0,0,0,0.05);
            transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
            border: 1px solid #E9EDF2;
            cursor: pointer;
        }
        .course-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 40px -18px rgba(46,125,50,0.2);
        }
        .course-img {
            position: relative;
            overflow: hidden;
            background: #DAE8DA;
        }
        .course-img img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .course-card:hover .course-img img {
            transform: scale(1.05);
        }
        .course-duration {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            color: white;
            padding: 4px 8px;
            border-radius: 20px;
            font-size: 0.7rem;
        }
        .course-info {
            padding: 1.2rem 1.2rem 1.4rem;
        }
        .course-info h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }
        .course-desc {
            font-size: 0.8rem;
            color: #5B6E8C;
            margin-bottom: 0.8rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .course-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            color: #5B6E8C;
            border-top: 1px solid #E9EDF2;
            padding-top: 0.8rem;
            margin-top: 0.2rem;
        }
        .course-stats i {
            margin-right: 4px;
            color: #F57C00;
        }
        .price {
            font-weight: 700;
            color: #2E7D32;
        }

        /* 学习路径模块 */
        .path-section {
            background: linear-gradient(110deg, #2E7D32 0%, #1B5E20 100%);
            border-radius: 48px;
            padding: 2.5rem 2rem;
            margin: 3rem 0;
            color: white;
        }
        .path-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        .path-text {
            flex: 1;
        }
        .path-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        .path-steps {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }
        .step {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(4px);
            padding: 0.8rem 1.5rem;
            border-radius: 60px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        /* 专栏文章区域 */
        .articles-section {
            margin: 2rem 0;
        }
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }
        .section-header h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--dark-text);
        }
        .more-link {
            color: #F57C00;
            font-size: 0.85rem;
            font-weight: 500;
        }
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.8rem;
        }
        .article-item {
            background: #ffffff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03), 0 2px 4px rgba(0,0,0,0.05);
            transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
            border: 1px solid #E9EDF2;
            cursor: pointer;
        }
        .article-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 25px 40px -18px rgba(46,125,50,0.2);
        }
        .article-img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
        }
        .article-content {
            padding: 1rem 1.2rem 1.2rem;
        }
        .article-content h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }
        .article-excerpt {
            font-size: 0.8rem;
            color: #5B6E8C;
            margin-bottom: 0.6rem;
        }
        .article-date {
            font-size: 0.7rem;
            color: #5B6E8C;
        }

        /* CTA订阅 */
        .cta-card {
            background: #ffffff;
            border-radius: 40px;
            padding: 2rem;
            text-align: center;
            margin: 3rem 0;
            border: 1px solid #E9EDF2;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03), 0 2px 4px rgba(0,0,0,0.05);
        }
        .cta-card h3 {
            font-size: 1.5rem;
            color: #2E7D32;
            margin-bottom: 0.5rem;
        }
        .subscribe-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-top: 1.5rem;
        }
        .subscribe-form input {
            padding: 12px 20px;
            border-radius: 60px;
            border: 1px solid #E9EDF2;
            width: 260px;
            font-size: 0.9rem;
        }
        /* 联系表单 */
        .contact-section {
            background: #F9FBFD;
            border-radius: 40px;
        }
        .contact-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        .contact-info {
            flex: 1;
        }
        .contact-form {
            flex: 1;
            background: white;
            padding: 2rem;
            border-radius: 32px;
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
        }
        .input-group {
            margin-bottom: 1rem;
        }
        input, textarea {
            width: 100%;
            padding: 12px 18px;
            border: 1px solid #E5E9F0;
            border-radius: 60px;
            font-family: inherit;
            outline: none;
        }
        textarea {
            border-radius: 24px;
            resize: vertical;
        }
        footer {
            background: #0A2540;
            color: #C9D9E8;
            padding: 3rem 0 2rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #1F3B4F;
            font-size: 0.85rem;
        }
        @media (max-width: 880px) {
            .navbar {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 1rem;
                padding: 1.5rem 0;
                background: white;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .hero-content h1 {
                font-size: 2.4rem;
            }
            .section-title {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 640px) {
            .container {
                padding: 0 20px;
            }
            .hero-grid {
                flex-direction: column;
            }
            .overseas-flex {
                flex-direction: column;
            }
            .integrate-box {
                padding: 2rem 1.5rem;
            }
        }
        @media (max-width: 760px) {
            .news-grid { grid-template-columns: 1fr; }
            .detail-title { font-size: 1.6rem; }
            .nav-links { display: none; width: 100%; flex-direction: column; background: white; }
            .nav-links.active { display: flex; }
            .menu-toggle { display: block; }
        }
        .btn-icon {
            margin-left: 5px;
        }
        .flex-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
		
		/* 右侧客服工具栏 */
		.customer-toolbar {
		    position: fixed;
		    right: 24px;
		    bottom: 24px;
		    z-index: 1000;
		    display: flex;
		    flex-direction: column;
		    gap: 14px;
		    align-items: flex-end;
		}
		.chat-btn {
		    background: #2e7d32;
		    width: 56px;
		    height: 56px;
		    border-radius: 32px;
		    display: flex;
		    align-items: center;
		    justify-content: center;
		    color: white;
		    font-size: 26px;
		    cursor: pointer;
		    box-shadow: 0 8px 20px rgba(46,125,50,0.3);
		    transition: 0.2s;
		    border: none;
		}
		.chat-btn:hover {
		    background: #1B5E20;
		    transform: scale(1.05);
		}
		.back2top {
		    /* background: #f57c00; */
			background: #E65100;
		    width: 48px;
		    height: 48px;
		    border-radius: 30px;
		    display: flex;
		    align-items: center;
		    justify-content: center;
		    color: white;
		    font-size: 22px;
		    cursor: pointer;
		    opacity: 0.8;
		    transition: 0.2s;
		    box-shadow: 0 4px 12px rgba(245,124,0,0.3);
		}
		.back2top:hover {
		    opacity: 1;
		    transform: translateY(-3px);
		}
		.chat-panel {
		    background: white;
		    width: 280px;
		    border-radius: 24px;
		    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.2);
		    margin-bottom: 12px;
		    overflow: hidden;
		    border: 1px solid #e9edf2;
		    transition: 0.2s;
		}
		.chat-header {
		    background: #2e7d32;
		    color: white;
		    padding: 14px 16px;
		    font-weight: bold;
		    display: flex;
		    justify-content: space-between;
		}
		.chat-body {
		    padding: 16px;
		}
		.chat-input-area {
		    display: flex;
		    gap: 8px;
		    margin-top: 12px;
		}
		.chat-input-area input {
		    flex: 1;
		    border-radius: 40px;
		    border: 1px solid #e9edf2;
		    padding: 8px 12px;
		}
		.mini-send {
		    background: #E65100;
		    border: none;
		    border-radius: 30px;
		    padding: 0 12px;
		    color: white;
		    cursor: pointer;
			box-shadow: 0 4px 12px rgba(245,124,0,0.3);
		}
		.hidden-panel {
		    display: none;
		}
		
        /* 新闻板块 */
        /* 面包屑 */
        .breadcrumb {
            margin: 1.5rem 0 0.5rem;
            font-size: 0.85rem;
            color: #5b6e8c;
        }
        .breadcrumb a {
            color: #2E7D32;
        }
        .breadcrumb i {
            margin: 0 6px;
            font-size: 0.7rem;
        }

        /* 新闻列表页布局 */
         /* 新闻列表头部 */
        .news-list-header {
            background: linear-gradient(110deg, #EFF5EC 0%, #FFFFFF 100%);
            padding: 2rem 0 1.8rem;
            border-radius: 0 0 32px 32px;
            margin-bottom: 2rem;
        }
        .section-title-news {
            font-size: 2rem;
            font-weight: 700;
            color: #1e2a3a;
            position: relative;
            display: inline-block;
        }
        .section-title-news:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #f57c00;
            margin-top: 8px;
            border-radius: 4px;
        }
        .section-news-sub {
            color: #5b6e8c;
            margin-top: 0.5rem;
            font-size: 1rem;
        }

        /* 分类筛选器 - 使用纯HTML + 表单实现，无JS依赖数据加载 */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin: 1.5rem 0 1.8rem;
            gap: 1rem;
        }
        .filter-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .filter-tab-link {
            display: inline-block;
            padding: 6px 20px;
            border-radius: 40px;
            font-weight: 500;
            transition: all 0.25s ease;
            background: #ffffff;
            color: #5b6e8c;
            border: 1px solid #e9edf2;
            font-size: 0.85rem;
            cursor: pointer;
        }
        .filter-tab-link.active, .filter-tab-link:hover {
            background: #2E7D32;
            color: white;
            border-color: #2E7D32;
        }
        /* 模拟a标签的filter样式，实际使用get参数 */
        .result-count {
            font-size: 0.85rem;
            color: #5b6e8c;
            background: #FFFFFF;
            padding: 6px 18px;
            border-radius: 40px;
        }

        /* 新闻网格 - 纯静态 volist 循环样式 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 2rem;
            margin: 1.5rem 0 2.5rem;
        }
        .news-card {
            background: #FFFFFF;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            transition: all 0.25s ease;
            border: 1px solid #e9edf2;
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 35px -16px rgba(46,125,50,0.15);
            border-color: #81C784;
        }
        .news-img {
            /* height: 210px;
            overflow: hidden;
            background-color: #DAE8DA;
            position: relative; */
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            transition: transform 0.45s ease;
            display: block;
        }
        .news-img-wrapper {
            position: relative;
            overflow: hidden;
            background: #DAE8DA;
        }
        /* .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        } */
        .news-card:hover .news-img img {
            transform: scale(1.05);
        }
        .news-category {
            position: absolute;
            top: 14px;
            left: 14px;
            background: #f57c00;
            color: white;
            padding: 5px 14px;
            border-radius: 40px;
            font-size: 0.7rem;
            font-weight: 700;
            z-index: 2;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .news-content {
            padding: 1.4rem 1.4rem 1.6rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.75rem;
            color: #5b6e8c;
            border-top: 1px solid #e9edf2;
            padding-top: 0.8rem;
            margin-top: 0.5rem;
            margin-bottom: 0.7rem;
        }
        .news-meta i {
            margin-right: 4px;
            color: #2E7D32;
        }
        .news-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.7rem;
            line-height: 1.4;
            color: #1e2a3a;
            transition: color 0.2s;
        }
        .news-card:hover .news-title {
            color: #2E7D32;
        }
        .news-summary {
            color: #5b6e8c;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            line-height: 1.5;
            flex: 1;
        }
        .read-more {
            color: #f57c00;
            font-weight: 600;
            font-size: 0.8rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        /* 加载指示器与底部提示 */
        .loading-trigger {
            text-align: center;
            padding: 1.5rem;
            color: #5b6e8c;
        }
        .loading-spinner {
            display: inline-block;
            width: 30px;
            height: 30px;
            border: 3px solid #e9edf2;
            border-top-color: #2E7D32;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        .load-more-end {
            text-align: center;
            padding: 2rem;
            color: #5b6e8c;
            font-size: 0.85rem;
            border-top: 1px solid #e9edf2;
            margin-top: 1rem;
        }
        .load-more-end i {
            margin-right: 6px;
            color: #2E7D32;
        }
        /* 详情链接样式 */
        .detail-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        /* 分页样式 - 纯HTML链接，无JS分页逻辑 */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            margin: 2rem 0 3rem;
            flex-wrap: wrap;
        }
        .page-item {
            min-width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 30px;
            background: white;
            border: 1px solid #e9edf2;
            transition: all 0.25s ease;
            font-weight: 500;
            padding: 0 12px;
            cursor: pointer;
        }
        .page-item a {
            display: block;
            width: 100%;
            text-align: center;
            text-decoration: none;
            color: inherit;
        }
        .page-item.active, .page-item:hover {
            background: #2E7D32;
            color: white;
            border-color: #2E7D32;
        }
        .page-item.active a, .page-item:hover a {
            color: white;
        }

          /* 新闻详情页主布局 */
        .detail-layout {
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            margin: 2rem 0 3rem;
        }
        .detail-main {
            flex: 2.5;
            min-width: 0;
        }
        .detail-sidebar {
            flex: 1.2;
            min-width: 260px;
        }
        .detail-card {
            background: #FFFFFF;
            border-radius: 32px;
            padding: 2rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            border: 1px solid #e9edf2;
        }
        .detail-category {
            display: inline-block;
            background: #f57c00;
            color: white;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .detail-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin: 0.5rem 0 1rem;
            color: #1e2a3a;
            line-height: 1.3;
        }
        .detail-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: #5b6e8c;
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e9edf2;
        }
        .detail-feature-img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
            border-radius: 28px;
            margin: 0.5rem 0 1.8rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
        }
        .detail-content {
            font-size: 1rem;
            line-height: 1.75;
            color: #2c3e3f;
        }
        .detail-content p {
            margin-bottom: 1.2rem;
        }
        .detail-content h3 {
            margin: 1.5rem 0 0.8rem;
            color: #2E7D32;
            font-size: 1.3rem;
        }
        .detail-content ul {
            margin: 1rem 0 1rem 1.8rem;
        }
        .detail-content li {
            margin: 0.5rem 0;
        }
        .detail-content blockquote {
            background: #F0F7F0;
            border-left: 4px solid #2E7D32;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 16px;
            font-style: italic;
            color: #1e2a3a;
        }
        /* 分享栏 */
        .share-bar {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 2rem 0 1rem;
            padding-top: 1rem;
            border-top: 1px solid #e9edf2;
            flex-wrap: wrap;
        }
        .share-label {
            font-weight: 600;
            color: #1e2a3a;
        }
        .share-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #f0f2f5;
            color: #5b6e8c;
            transition: all 0.25s ease;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .share-icon:hover {
            transform: translateY(-3px);
        }
        .share-icon.wechat:hover { background: #2DC100; color: white; }
        .share-icon.weibo:hover { background: #E6162D; color: white; }
        .share-icon.linkedin:hover { background: #0077B5; color: white; }
        .share-icon.twitter:hover { background: #1DA1F2; color: white; }

        /* 侧边栏组件 */
        .sidebar-widget {
            background: #FFFFFF;
            border-radius: 28px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid #e9edf2;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
        }
        .widget-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            position: relative;
            padding-left: 12px;
            border-left: 4px solid #F57C00;
        }
        .rel-article-item {
            display: flex;
            gap: 12px;
            margin-bottom: 1.2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #e9edf2;
            transition: all 0.25s ease;
        }
        .rel-article-item:hover {
            transform: translateX(4px);
        }
        .rel-article-item a {
            display: flex;
            gap: 12px;
            width: 100%;
        }
        .rel-img {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            object-fit: cover;
            background: #DAE8DA;
            flex-shrink: 0;
        }
        .rel-info h4 {
            font-size: 0.9rem;
            font-weight: 600;
            line-height: 1.35;
            margin-bottom: 6px;
            color: #1e2a3a;
        }
        .rel-info h4:hover {
            color: #2E7D32;
        }
        .rel-date {
            font-size: 0.7rem;
            color: #5b6e8c;
        }
        .back-btn {
            margin-top: 0.5rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .toast-msg {
            position: fixed;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            background: #2E7D32;
            color: white;
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 0.85rem;
            z-index: 1100;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }


        /* 页面通用区块 */
        .page-section {
            padding: 4rem 0;
            border-bottom: 1px solid #e9edf2;
        }
        .section-title-page {
            font-size: 2rem;
            font-weight: 700;
            color: #1e2a3a;
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
        }
        .section-title-page:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #f57c00;
            margin-top: 8px;
            border-radius: 4px;
        }
        .section-sub-page {
            color: #5b6e8c;
            max-width: 700px;
            margin-bottom: 2.5rem;
            font-size: 1rem;
        }

        /* 公司简介 Hero */
        .about-hero {
            background: linear-gradient(135deg, #EFF5EC 0%, #FFFFFF 100%);
            padding: 3rem 0 4rem;
            border-radius: 0 0 48px 48px;
            margin-bottom: 1rem;
        }
        .about-hero-content {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
        }
        .about-hero-text {
            flex: 1.2;
        }
        .about-hero-text h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1e2a3a;
            margin-bottom: 1rem;
        }
        .about-hero-text p {
            font-size: 1.1rem;
            color: #5b6e8c;
            line-height: 1.6;
        }
        .about-stats {
            flex: 0.8;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            background: #FFFFFF;
            padding: 1.8rem;
            border-radius: 32px;
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
        }
        .stat-item h3 {
            font-size: 1.8rem;
            color: #2E7D32;
        }

        /* 价值观卡片 */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .value-card {
            background: #FFFFFF;
            padding: 2rem 1.5rem;
            border-radius: 28px;
            text-align: center;
            transition: all 0.25s ease;
            border: 1px solid #e9edf2;
        }
        .value-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 35px -16px rgba(46,125,50,0.15);
            border-color: #81C784;
        }
        .value-icon {
            font-size: 2.5rem;
            color: #2E7D32;
            margin-bottom: 1rem;
        }
        .value-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
        }

        /* 团队网格 */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .team-card {
            background: #FFFFFF;
            border-radius: 28px;
            overflow: hidden;
            text-align: center;
            transition: all 0.25s ease;
            border: 1px solid #e9edf2;
            padding-bottom: 1.5rem;
        }
        .team-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 35px -16px rgba(46,125,50,0.15);
        }
        .team-avatar {
            width: 100%;
            height: 240px;
            object-fit: cover;
            background: #DAE8DA;
        }
        .team-card h4 {
            font-size: 1.2rem;
            margin: 1rem 0 0.3rem;
        }
        .team-title {
            color: #f57c00;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .team-bio {
            font-size: 0.8rem;
            color: #5b6e8c;
            padding: 0 1rem;
        }

        /* 客户Logo墙 */
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            align-items: center;
            justify-items: center;
            margin-top: 2rem;
        }
        .client-item {
            text-align: center;
            transition: all 0.25s ease;
            opacity: 0.7;
        }
        .client-item:hover {
            opacity: 1;
            transform: scale(1.05);
        }
        .client-logo {
            width: 100px;
            height: 100px;
            background: #FFFFFF;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.8rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            border: 1px solid #e9edf2;
            font-size: 2rem;
            color: #2E7D32;
        }
        .client-name {
            font-size: 0.85rem;
            font-weight: 500;
            color: #5b6e8c;
        }

        /* 加入我们板块 */
        .join-box {
            background: linear-gradient(110deg, #2E7D32 0%, #1B5E20 100%);
            border-radius: 32px;
            padding: 3rem;
            color: white;
            text-align: center;
        }
        .join-box h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        .join-box p {
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }
        .job-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }
        .job-tag {
            background: rgba(255,255,255,0.2);
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 0.85rem;
            transition: all 0.25s ease;
        }
        .job-tag:hover {
            background: #f57c00;
            transform: translateY(-2px);
        }
        .join-resume{
            margin-top: 2rem;
        }
        .join-resume-btn{
            background:#F57C00;
        }

        /* 联系表单 + 信息 */
        .contact-grid-page {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .contact-info-page {
            flex: 1;
            background: #FFFFFF;
            padding: 2rem;
            border-radius: 32px;
            border: 1px solid #e9edf2;
        }
        .contact-info-page h3{
            margin-bottom: 1.5rem; 
            color: #2E7D32;
        }
        .contact-info-page p i{
            width: 30px; 
            color:#2E7D32;
        }
        .contact-share{
            margin-top: 2rem; 
            display: flex; 
            gap: 1rem;
        }
        .contact-share i{
            color: #5b6e8c; 
            cursor: pointer;
        }
        .contact-form {
            flex: 1;
            background: #FFFFFF;
            padding: 2rem;
            border-radius: 32px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            border: 1px solid #e9edf2;
        }
        .input-group {
            margin-bottom: 1rem;
        }
        input, textarea {
            width: 100%;
            padding: 12px 18px;
            border: 1px solid #e9edf2;
            border-radius: 60px;
            font-family: inherit;
            background: #FFFFFF;
            transition: all 0.25s ease;
        }
        textarea {
            border-radius: 24px;
            resize: vertical;
        }
        input:focus, textarea:focus {
            outline: none;
            border-color: #2E7D32;
            box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
        }

         /* 案例列表头部 */
        .cases-header {
            background: linear-gradient(120deg, #EFF5EC 0%, #FFFFFF 100%);
            padding: 2rem 0 1.8rem;
            /* border-radius: 0 0 36px 36px; */
            margin-bottom: 2rem;
        }
        .section-title-case {
            font-size: 2.2rem;
            font-weight: 700;
            color: #111827;
            position: relative;
            display: inline-block;
        }
        .section-title-case:after {
            content: '';
            display: block;
            width: 70px;
            height: 4px;
            background: #F57C00;
            margin-top: 8px;
            border-radius: 4px;
        }
        .section-sub-case {
            color: #5b6e8c;
            max-width: 680px;
            margin-top: 0.8rem;
            font-size: 1rem;
        }
        /* 分类筛选器 */
        .filter-tab {
            cursor: pointer;
            padding: 6px 20px;
            border-radius: 40px;
            font-weight: 500;
            transition: all 0.25s ease;
            background: #FFFFFF;
            color: #5b6e8c;
            border: 1px solid #e9edf2;
            font-size: 0.85rem;
        }
        .filter-tab.active, .filter-tab:hover {
            background: #2E7D32;
            color: white;
            border-color: #2E7D32;
        }
        .result-count {
            font-size: 0.85rem;
            color: #5b6e8c;
            background: #FFFFFF;
            padding: 6px 16px;
            border-radius: 40px;
        }
        /* 瀑布流网格布局 (Masonry 风格) */
        .masonry-grid {
            column-count: 3;
            column-gap: 28px;
            margin: 1.5rem 0 2.5rem;
        }
        @media (max-width: 1100px) {
            .masonry-grid { column-count: 2; }
        }
        @media (max-width: 680px) {
            .masonry-grid { column-count: 1; }
        }

        .case-card {
            break-inside: avoid;
            margin-bottom: 28px;
            background: #FFFFFF;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            transition: all 0.25s ease;
            border: 1px solid #e9edf2;
        }
        .case-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 35px -16px rgba(46,125,50,0.15);
            border-color: #2E7D32;
        }
        .case-card a {
            display: block;
            text-decoration: none;
            color: inherit;
        }
        .case-img-wrapper {
            position: relative;
            overflow: hidden;
            background: #DAE8DA;
        }
        .case-img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            transition: transform 0.45s ease;
            display: block;
        }
        .case-card:hover .case-img {
            transform: scale(1.05);
        }
        .case-category {
            position: absolute;
            top: 16px;
            left: 16px;
            background: #F57C00;
            color: white;
            padding: 5px 14px;
            border-radius: 40px;
            font-size: 0.7rem;
            font-weight: 700;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .case-content {
            padding: 1.4rem 1.4rem 1.6rem;
        }
        .case-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
            line-height: 1.4;
            color: #111827;
            transition: color 0.2s;
        }
        .case-card:hover .case-title {
            color: #2E7D32;
        }
        .case-desc {
            font-size: 0.85rem;
            color: #5b6e8c;
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        .case-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.7rem;
            color: #5b6e8c;
            border-top: 1px solid #e9edf2;
            padding-top: 0.8rem;
            margin-top: 0.2rem;
        }
        .case-meta i {
            margin-right: 4px;
            color: #2E7D32;
        }
        .read-more-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #F57C00;
            margin-top: 0.5rem;
        }
        /* 加载更多按钮 */
        .load-more-container {
            text-align: center;
            margin: 1rem 0 3rem;
        }

        /* 分页组件 - 纯HTML链接 */
        .pagination-wrapper {
            margin: 2rem 0 3rem;
            display: flex;
            justify-content: center;
        }
        .pagination {
            display: inline-flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            background: #FFFFFF;
            padding: 0.5rem 1rem;
            border-radius: 60px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            border: 1px solid #e9edf2;
        }
        .page-item {
            min-width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 40px;
            transition: all 0.25s ease;
            font-weight: 500;
            font-size: 0.9rem;
        }
        .page-item a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            text-decoration: none;
            color: #5b6e8c;
            padding: 0 12px;
            border-radius: 40px;
            transition: all 0.25s ease;
        }
        .page-item:hover a {
            background: #2E7D32;
            color: #2E7D32;
        }
        .page-item.active a {
            background: #2E7D32;
            color: white;
            box-shadow: 0 2px 8px rgba(46,125,50,0.3);
        }
        .page-item.disabled {
            opacity: 0.4;
            cursor: not-allowed;
            pointer-events: none;
        }
        .page-dots {
            min-width: 32px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #5b6e8c;
            font-size: 0.9rem;
        }
        .page-info {
            display: inline-flex;
            align-items: center;
            margin-right: 0.8rem;
            padding-right: 0.8rem;
            border-right: 1px solid #e9edf2;
            font-size: 0.85rem;
            color: #5b6e8c;
        }
        .page-info i {
            margin-right: 6px;
            color: #2E7D32;
        }
        .page-jump {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-left: 0.8rem;
            padding-left: 0.8rem;
            border-left: 1px solid #e9edf2;
        }
        .page-jump input {
            width: 65px;
            padding: 6px 10px;
            border: 1px solid #e9edf2;
            border-radius: 40px;
            font-size: 0.8rem;
            text-align: center;
        }
        .page-jump button {
            background: #2E7D32;
            border: none;
            color: white;
            padding: 6px 12px;
            border-radius: 40px;
            font-size: 0.75rem;
            cursor: pointer;
        }
        /* case详情页主布局 */
        /* 详情主卡片 */
        .detail-card {
            background: #FFFFFF;
            border-radius: 32px;
            padding: 2rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            border: 1px solid #e9edf2;
            margin-bottom: 2rem;
        }
        .detail-category {
            display: inline-block;
            background: #F57C00;
            color: white;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .detail-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin: 0.5rem 0 1rem;
            color: #111827;
            line-height: 1.3;
        }
        .detail-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: #5b6e8c;
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e9edf2;
        }
        .detail-feature-img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
            border-radius: 28px;
            margin: 0.5rem 0 1.8rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
        }
        .detail-content {
            font-size: 1rem;
            line-height: 1.75;
            color: #2c3e3f;
        }
        .detail-content p {
            margin-bottom: 1.2rem;
        }
        .detail-content h3 {
            margin: 1.5rem 0 0.8rem;
            color: #2E7D32;
            font-size: 1.3rem;
        }
        .detail-content h4 {
            margin: 1rem 0 0.5rem;
            color: #111827;
            font-size: 1.1rem;
        }
        .detail-content ul, .detail-content ol {
            margin: 1rem 0 1rem 1.8rem;
        }
        .detail-content li {
            margin: 0.5rem 0;
        }
        .detail-content blockquote {
            background: #F0F7F0;
            border-left: 4px solid #2E7D32;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 16px;
            font-style: italic;
            color: #111827;
        }
        .result-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            background: #EFF5EC;
            padding: 1.5rem;
            border-radius: 24px;
            margin: 1.5rem 0;
        }
        .result-stat {
            flex: 1;
            text-align: center;
        }
        .result-stat .number {
            font-size: 1.8rem;
            font-weight: 800;
            color: #2E7D32;
        }
        .result-stat .label {
            font-size: 0.8rem;
            color: #5b6e8c;
        }
        /* 底部区域布局 */
        .bottom-section {
            margin: 2rem 0 3rem;
        }
        /* 推荐阅读网格（小缩略图文排版） */
        .recommend-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 12px;
            border-left: 4px solid #F57C00;
        }
        .recommend-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .rec-card {
            background: #FFFFFF;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid #e9edf2;
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
        }
        .rec-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 25px 35px -16px rgba(46,125,50,0.15);
        }
        .rec-img {
            height: 160px;
            overflow: hidden;
        }
        .rec-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .rec-card:hover .rec-img img {
            transform: scale(1.05);
        }
        .rec-content {
            padding: 1rem;
        }
        .rec-category {
            font-size: 0.7rem;
            color: #F57C00;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }
        .rec-title {
            font-size: 0.95rem;
            font-weight: 600;
            line-height: 1.4;
            color: #111827;
        }
        .rec-title:hover {
            color: #2E7D32;
        }

        /* 融合板块：获取同款方案 + 行业解决方案 */
        .hybrid-solution {
            background: linear-gradient(135deg, #2e7d32 0%, #27732b 100%);
            border-radius: 32px;
            padding: 2rem;
            color: white;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-between;
            align-items: center;
        }
        .hybrid-left {
            flex: 1.2;
        }
        .hybrid-left h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        .hybrid-left p {
            opacity: 0.85;
            margin-bottom: 1.2rem;
        }
        .hybrid-right {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .solution-link {
            background: rgba(255,255,255,0.12);
            padding: 0.8rem 1.2rem;
            border-radius: 60px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.25s ease;
            font-size: 0.85rem;
        }
        .solution-link:hover {
            background: #F57C00;
            transform: translateY(-2px);
        }
        .solution-link i {
            font-size: 1rem;
        }
        .hybrid-cta {
            background: #F57C00;
            padding: 0.8rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        .hybrid-cta:hover {
            background: #E65100;
            transform: translateY(-2px);
        }
        @media (max-width: 860px) {
            .hybrid-solution { flex-direction: column; text-align: center; }
            .hybrid-right { justify-content: center; }
        }


        /* 解决方案深度卡片 (全新升级独立模块) */
        .solution-block {
            background: #ffffff;
            border-radius: 48px;
            margin-bottom: 3.5rem;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
            border: 1px solid #E9EDF2;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03), 0 2px 4px rgba(0,0,0,0.05);
        }
        .solution-block:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 40px -18px rgba(46,125,50,0.2);
        }
        .solution-inner {
            display: flex;
            flex-wrap: wrap;
        }
        .solution-info {
            flex: 1.2;
            padding: 2.5rem;
        }
        .solution-icon {
            font-size: 3rem;
            color: #2E7D32;
            margin-bottom: 1rem;
        }
        .solution-info h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1E2A3A;
        }
        .solution-desc {
            color: #5B6E8C;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: #1E2A3A;
        }
        .feature-item i {
            color: #F57C00;
            font-size: 1rem;
        }
        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 1rem 0 1.5rem;
        }
        .tech-tag {
            background: #E9F5E9;
            color: #2E7D32;
            padding: 4px 12px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        .solution-visual {
            flex: 0.9;
            background: linear-gradient(145deg, #F8FBF8 0%, #F0F4EE 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            min-height: 320px;
        }
        .visual-content {
            text-align: center;
        }
        .visual-icon-large {
            font-size: 5rem;
            color: #2E7D32;
            opacity: 0.7;
            margin-bottom: 1rem;
        }
        .stat-circle {
            font-size: 2rem;
            font-weight: 800;
            color: #F57C00;
        }

        /* 方案交替配色 */
        .solution-block:nth-child(even) .solution-inner {
            flex-direction: row-reverse;
        }
        @media (max-width: 880px) {
            .solution-inner, .solution-block:nth-child(even) .solution-inner {
                flex-direction: column;
            }
            .solution-visual {
                min-height: 240px;
            }
            .hero-content h1 { font-size: 2.2rem; }
            .hero-stats { flex: 1; }
            .nav-links { display: none; width: 100%; flex-direction: column; gap: 1rem; background: white; padding: 1rem 0; }
            .nav-links.active { display: flex; }
            .menu-toggle { display: block; }
        }

        /* 全链路整合板块 */
        .integrate-section {
            background: linear-gradient(110deg, #2E7D32 0%, #1B5E20 100%);
            border-radius: 48px;
            padding: 3rem 2rem;
            margin: 2rem 0;
            color: white;
        }
        .integrate-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        .integrate-text {
            flex: 1;
        }
        .integrate-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        .integrate-badges {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .badge-white {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(4px);
            padding: 0.8rem 1.2rem;
            border-radius: 60px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        /* CTA */
        .cta-section {
            background: #F5F7FA;
            border-radius: 48px;
            padding: 3rem 2rem;
            text-align: center;
            margin: 2rem 0;
            border: 1px solid #E9EDF2;
        }



         /* 404 主区域 */
        .error-section {
            padding: 3rem 0 5rem;
            text-align: center;
        }
        .error-code {
            font-size: 8rem;
            font-weight: 800;
            background: linear-gradient(135deg,  #2E7D32, #F57C00);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            line-height: 1;
            margin-bottom: 1rem;
            letter-spacing: 4px;
        }
        .error-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 1rem;
        }
        .error-message {
            font-size: 1rem;
            color: #5b6e8c;
            max-width: 550px;
            margin: 0 auto 2rem;
        }
        .hot-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }
        .hot-link {
            background: #FFFFFF;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            border: 1px solid #e9edf2;
            transition: all 0.25s ease;
        }
        .hot-link:hover {
            background: #2E7D32;
            border-color:  #2E7D32;
            color:#FFFFFF;
            transform: translateY(-2px);
        }
        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        @media (max-width: 860px) {
            .pagination { flex-wrap: wrap; }
            .page-info { border-right: none; border-bottom: 1px solid #e9edf2; padding-bottom: 6px; margin-bottom: 6px; width: 100%; justify-content: center; }
            .page-jump { margin-left: 0; border-left: none; margin-top: 6px; }
        }