<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="utf-8" />
	<title>田豪杰-官网</title>
    <meta name="keywords" content="田豪杰,www.tianhj.com,啤酒" />
    <meta name="description" content="田豪杰www.tianhj.com经营范围含:模具加工、图书音像、汽摩附属产品、广告礼品、切割设备、种牛、牲畜、物流、运动服装、质控（依法须经批准的项目,经相关部门批准后方可开展经营活动）。" />
    <meta name="renderer" content="webkit" />
    <meta name="force-rendering" content="webkit" />
    <meta http-equiv="Cache-Control" content="no-transform" />
    <meta http-equiv="Cache-Control" content="no-siteapp" />
    <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"/>
	<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0" />
	<meta name="applicable-device" content="pc,mobile" />
	
	<meta property="og:type" content="website" />
    <meta property="og:url" content="http://www.tianhj.com/" />
	<meta property="og:site_name" content="田豪杰" />
	<meta property="og:title" content="田豪杰-官网" />
	<meta property="og:keywords" content="田豪杰,www.tianhj.com,啤酒" />
	<meta property="og:description" content="田豪杰www.tianhj.com经营范围含:模具加工、图书音像、汽摩附属产品、广告礼品、切割设备、种牛、牲畜、物流、运动服装、质控（依法须经批准的项目,经相关部门批准后方可开展经营活动）。" />
    <link rel="stylesheet" href="/css/style.css?t=18" type="text/css" />
     
   <script type="application/ld+json">
	{
		"@context": "https://schema.org",
		"@type": "WebSite",
		"name": "田豪杰",
		"url": "http://www.tianhj.com/",
		"description": "田豪杰www.tianhj.com经营范围含:模具加工、图书音像、汽摩附属产品、广告礼品、切割设备、种牛、牲畜、物流、运动服装、质控（依法须经批准的项目,经相关部门批准后方可开展经营活动）。",
		"image":"http://222.73.219.23:1668/images/17256.jpg",
		"publisher": {
			"@type": "Organization",
			"name": "田豪杰",
			"url": "http://www.tianhj.com/",
			"logo": {
				"@type": "ImageObject",
				"url": "http://222.73.219.23:1668/images/17256.jpg",
				"width": 200,
				"height": 60
			}
		}
	}
	</script>
	
</head>
<body>
    

<nav class="neo-nav" role="navigation" aria-label="主导航">
    <div class="neo-container">
        <div class="neo-nav-container">
            
            <a href="http://www.tianhj.com/index.html" class="neo-nav-logo">
                <span>田豪杰</span>
            </a>

            
            <ul class="neo-nav-menu" role="menubar">
                <li role="none" class="neo-nav-item">
                    <a href="http://www.tianhj.com/index.html" class="neo-nav-link " role="menuitem" >
                        <span class="neo-nav-icon">🏠</span>
                        首页
                    </a>
                </li>
                <li role="none" class="neo-nav-item">
                    <a href="http://www.tianhj.com/about.html" class="neo-nav-link " role="menuitem" >
                        <span class="neo-nav-icon">📖</span>
                        关于我们
                    </a>
                </li>
                <li role="none" class="neo-nav-item">
                    <a href="http://www.tianhj.com/service.html" class="neo-nav-link " role="menuitem" >
                        <span class="neo-nav-icon">🛠️</span>
                        产品服务
                    </a>
                </li>
                <li role="none" class="neo-nav-item">
                    <a href="http://www.tianhj.com/case.html" class="neo-nav-link " role="menuitem" >
                        <span class="neo-nav-icon">📋</span>
                        成功案例
                    </a>
                </li>
                <li role="none" class="neo-nav-item">
                    <a href="http://www.tianhj.com/news.html" class="neo-nav-link " role="menuitem" >
                        <span class="neo-nav-icon">📰</span>
                        资讯动态
                    </a>
                </li>
                <li role="none" class="neo-nav-item">
                    <a href="http://www.tianhj.com/culture.html" class="neo-nav-link " role="menuitem" >
                        <span class="neo-nav-icon">🏭</span>
                        企业文化
                    </a>
                </li>
                <li role="none" class="neo-nav-item">
                    <a href="http://www.tianhj.com/contact.html" class="neo-nav-link " role="menuitem" >
                        <span class="neo-nav-icon">📞</span>
                        联系我们
                    </a>
                </li>
            </ul>

            
            <button class="neo-mobile-toggle" id="neoMobileToggle" aria-label="打开菜单">
                <span></span>
                <span></span>
                <span></span>
            </button>
        </div>
    </div>
</nav>

<script>
(function() {
    // 导航栏滚动效果
    const nav = document.querySelector('.neo-nav');
    
    window.addEventListener('scroll', function() {
        if (window.scrollY > 50) {
            nav.classList.add('scrolled');
        } else {
            nav.classList.remove('scrolled');
        }
    });
    
    // 移动端菜单切换
    const mobileToggle = document.getElementById('neoMobileToggle');
    const navMenu = document.querySelector('.neo-nav-menu');
    
    if (mobileToggle && navMenu) {
        mobileToggle.addEventListener('click', function() {
            navMenu.classList.toggle('active');
            
            if (navMenu.classList.contains('active')) {
                mobileToggle.setAttribute('aria-label', '关闭菜单');
            } else {
                mobileToggle.setAttribute('aria-label', '打开菜单');
            }
        });
        
        // 点击菜单外部关闭菜单
        document.addEventListener('click', function(event) {
            if (!nav.contains(event.target) && navMenu.classList.contains('active')) {
                navMenu.classList.remove('active');
                mobileToggle.setAttribute('aria-label', '打开菜单');
            }
        });
    }
})();
</script>

    
    
    <nav class="neo-breadcrumb" aria-label="面包屑导航">
        <div class="neo-container">
            <ol class="neo-breadcrumb-list">
                <li class="neo-breadcrumb-item">
                    <a href="http://www.tianhj.com/index.html" class="neo-breadcrumb-link">首页</a>
                </li>
            </ol>
        </div>
    </nav>
    
    
    <section class="neo-hero">
        <div class="neo-hero-content">
            <div class="neo-hero-badge">专业服务</div>
            <h1 class="neo-hero-title">田豪杰</h1>
            <p class="neo-hero-subtitle">
                田豪杰致力于为客户提供高品质的产品和服务，通过创新技术和专业团队，为您的业务增长保驾护航。
            </p>
            <div class="neo-hero-actions">
                <a href="service.html" class="neo-btn neo-btn-primary">
                    <span class="neo-btn-icon">🛠️</span>
                    探索服务
                </a>
                <a href="contact.html" class="neo-btn neo-btn-secondary">
                    <span class="neo-btn-icon">📞</span>
                    联系我们
                </a>
            </div>
        </div>
        
        <div class="neo-hero-decoration">
            <div class="neo-hero-circle neo-hero-circle-1"></div>
            <div class="neo-hero-circle neo-hero-circle-2"></div>
            <div class="neo-hero-circle neo-hero-circle-3"></div>
        </div>
    </section>

    
    <section class="neo-section neo-section-alt">
        <div class="neo-container">
            <div class="neo-section-header">
                <span class="neo-section-badge">核心优势</span>
                <h2 class="neo-section-title">我们的优势</h2>
                <p class="neo-section-description">
                    凭借多年行业经验和专业技术，我们为客户提供全方位的解决方案
                </p>
            </div>
            <div class="neo-advantages-grid">
                <div class="neo-advantage-card neo-scroll-reveal">
                    <div class="neo-advantage-icon">
                        <span>🏆</span>
                    </div>
                    <h3 class="neo-advantage-title">品质保证</h3>
                    <p class="neo-advantage-description">
                        严格的质量控制体系，确保每一件产品都达到最高标准
                    </p>
                </div>
                <div class="neo-advantage-card neo-scroll-reveal">
                    <div class="neo-advantage-icon">
                        <span>💡</span>
                    </div>
                    <h3 class="neo-advantage-title">创新技术</h3>
                    <p class="neo-advantage-description">
                        持续投入研发，不断推出创新产品和解决方案
                    </p>
                </div>
                <div class="neo-advantage-card neo-scroll-reveal">
                    <div class="neo-advantage-icon">
                        <span>⏱️</span>
                    </div>
                    <h3 class="neo-advantage-title">快速响应</h3>
                    <p class="neo-advantage-description">
                        高效的服务团队，及时响应客户需求
                    </p>
                </div>
                <div class="neo-advantage-card neo-scroll-reveal">
                    <div class="neo-advantage-icon">
                        <span>💰</span>
                    </div>
                    <h3 class="neo-advantage-title">性价比高</h3>
                    <p class="neo-advantage-description">
                        合理的价格策略，为客户创造更大价值
                    </p>
                </div>
            </div>
        </div>
    </section>

    
    <section class="neo-section">
        <div class="neo-container">
            <div class="neo-about-layout">
                <div class="neo-about-content neo-scroll-reveal">
                    <div class="neo-section-header neo-section-header-left">
                        <span class="neo-section-badge">关于我们</span>
                        <h2 class="neo-section-title">企业简介</h2>
                    </div>
                    <p class="neo-about-text">
                        田豪杰成立于，是一家专业从事的企业。我们拥有一支经验丰富的专业团队，致力于为客户提供高品质的产品和服务。
                    </p>
                    <p class="neo-about-text">
                        多年来，我们凭借卓越的品质和优质的服务，赢得了广大客户的信任和支持。我们将继续秉持"专业、创新、诚信、服务"的核心价值观，不断提升企业核心竞争力，实现可持续发展。
                    </p>
                    <a href="about.html" class="neo-btn neo-btn-primary">
                        了解更多
                    </a>
                </div>
            </div>
        </div>
    </section>

    
    <section class="neo-section neo-section-dark">
        <div class="neo-container">
            <div class="neo-section-header">
                <span class="neo-section-badge">产品服务</span>
                <h2 class="neo-section-title">我们的服务</h2>
                <p class="neo-section-description">
                    为客户提供全方位的解决方案，满足不同行业的需求
                </p>
            </div>
            <div class="neo-services-grid">
                <div class="neo-service-card neo-scroll-reveal">
                    <div class="neo-service-icon">
                        <span>📱</span>
                    </div>
                    <h3 class="neo-service-title">产品设计</h3>
                    <p class="neo-service-description">
                        专业的产品设计团队，为客户提供创新的产品设计方案
                    </p>
                    <a href="service.html" class="neo-service-link">
                        了解详情
                    </a>
                </div>
                <div class="neo-service-card neo-scroll-reveal">
                    <div class="neo-service-icon">
                        <span>🏭</span>
                    </div>
                    <h3 class="neo-service-title">生产制造</h3>
                    <p class="neo-service-description">
                        先进的生产设备和工艺，确保产品质量和生产效率
                    </p>
                    <a href="service.html" class="neo-service-link">
                        了解详情
                    </a>
                </div>
                <div class="neo-service-card neo-scroll-reveal">
                    <div class="neo-service-icon">
                        <span>💻</span>
                    </div>
                    <h3 class="neo-service-title">技术支持</h3>
                    <p class="neo-service-description">
                        专业的技术团队，为客户提供全方位的技术支持和服务
                    </p>
                    <a href="service.html" class="neo-service-link">
                        了解详情
                    </a>
                </div>
            </div>
        </div>
    </section>

    
    <section class="neo-section">
        <div class="neo-container">
            <div class="neo-section-header">
                <span class="neo-section-badge">成功案例</span>
                <h2 class="neo-section-title">项目案例</h2>
                <p class="neo-section-description">
                    我们为众多客户提供了专业的解决方案，以下是部分成功案例
                </p>
            </div>
            <div class="neo-cases-carousel">
                <div class="neo-case-item neo-scroll-reveal">
                    <div class="neo-case-image">
                        <img src="http://222.73.219.23:1668/images/17256.jpg" alt="案例图片" />
                        <div class="neo-case-image-overlay">
                            <a href="case.html" class="neo-case-link">查看详情</a>
                        </div>
                    </div>
                    <div class="neo-case-content">
                        <h3 class="neo-case-title">电子元器件项目</h3>
                        <p class="neo-case-description">
                            为某知名电子企业提供高品质的电子元器件，帮助客户提升产品性能。
                        </p>
                    </div>
                </div>
                <div class="neo-case-item neo-scroll-reveal">
                    <div class="neo-case-image">
                        <img src="http://222.73.219.23:1668/images/38347.jpg" alt="案例图片" />
                        <div class="neo-case-image-overlay">
                            <a href="case.html" class="neo-case-link">查看详情</a>
                        </div>
                    </div>
                    <div class="neo-case-content">
                        <h3 class="neo-case-title">园艺用具项目</h3>
                        <p class="neo-case-description">
                            为某知名园艺企业设计和生产专业的园艺用具，帮助客户拓展市场。
                        </p>
                    </div>
                </div>
                <div class="neo-case-item neo-scroll-reveal">
                    <div class="neo-case-image">
                        <img src="http://222.73.219.23:1668/images/23816.jpg" alt="案例图片" />
                        <div class="neo-case-image-overlay">
                            <a href="case.html" class="neo-case-link">查看详情</a>
                        </div>
                    </div>
                    <div class="neo-case-content">
                        <h3 class="neo-case-title">装饰盒项目</h3>
                        <p class="neo-case-description">
                            为某知名品牌设计和生产精美的装饰盒，提升客户产品的包装品质。
                        </p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    
    <section class="neo-section neo-section-alt">
        <div class="neo-container">
            <div class="neo-section-header">
                <span class="neo-section-badge">客户评价</span>
                <h2 class="neo-section-title">客户反馈</h2>
            </div>
            <div class="neo-testimonials">
                <div class="neo-testimonial-item neo-scroll-reveal">
                    <div class="neo-testimonial-quote">
                        "田豪杰提供的产品质量非常好，服务也很专业，是我们值得信赖的合作伙伴。"
                    </div>
                    <div class="neo-testimonial-author">
                        <span class="neo-testimonial-author-name">张总</span>
                        <span class="neo-testimonial-author-company">某科技公司</span>
                    </div>
                </div>
                <div class="neo-testimonial-item neo-scroll-reveal">
                    <div class="neo-testimonial-quote">
                        "他们的技术团队非常专业，能够快速响应我们的需求，为我们提供了定制化的解决方案。"
                    </div>
                    <div class="neo-testimonial-author">
                        <span class="neo-testimonial-author-name">李总</span>
                        <span class="neo-testimonial-author-company">某制造企业</span>
                    </div>
                </div>
            </div>
        </div>
    </section>

    
    <section class="neo-section neo-section-action">
        <div class="neo-container">
            <div class="neo-action-content neo-scroll-reveal">
                <h2 class="neo-action-title">准备开始您的项目？</h2>
                <p class="neo-action-description">
                    联系我们，了解如何为您的业务提供专业的解决方案
                </p>
                <div class="neo-action-buttons">
                    <a href="contact.html" class="neo-btn neo-btn-primary">
                        联系我们
                    </a>
                    <a href="service.html" class="neo-btn neo-btn-secondary">
                        了解服务
                    </a>
                </div>
            </div>
        </div>
    </section>

    
<script>
(function(){
    var bp = document.createElement('script');
    var curProtocol = window.location.protocol.split(':')[0];
    if (curProtocol === 'https') {
        bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
    } else {
        bp.src = 'http://push.zhanzhang.baidu.com/push.js';
    }
    var s = document.getElementsByTagName("script")[0];
    s.parentNode.insertBefore(bp, s);
})();
</script>
<footer class="neo-footer">
    
    <div class="neo-footer-main">
        <div class="neo-container">
            <div class="neo-footer-content">
                
                <div class="neo-footer-column">
                    <div class="neo-footer-logo">
                        <span>田豪杰</span>
                        <p class="neo-footer-tagline">专业服务 · 创新未来</p>
                    </div>
                    <p class="neo-footer-description">
                        田豪杰致力于为客户提供高品质的产品和服务，通过创新技术和专业团队，为您的业务增长保驾护航。
                    </p>
                    <div class="neo-footer-social">
                        <a href="#" class="neo-footer-social-link" aria-label="微信">
                            <span class="neo-footer-social-icon">💬</span>
                        </a>
                        <a href="#" class="neo-footer-social-link" aria-label="微博">
                            <span class="neo-footer-social-icon">📱</span>
                        </a>
                        <a href="#" class="neo-footer-social-link" aria-label="邮箱">
                            <span class="neo-footer-social-icon">📧</span>
                        </a>
                        <a href="#" class="neo-footer-social-link" aria-label="LinkedIn">
                            <span class="neo-footer-social-icon">💼</span>
                        </a>
                    </div>
                </div>

                
                <div class="neo-footer-column">
                    <h3 class="neo-footer-title">快速链接</h3>
                    <ul class="neo-footer-links">
                        <li><a href="http://www.tianhj.com/index.html" class="neo-footer-link">首页</a></li>
                        <li><a href="http://www.tianhj.com/about.html" class="neo-footer-link">关于我们</a></li>
                        <li><a href="http://www.tianhj.com/service.html" class="neo-footer-link">产品服务</a></li>
                        <li><a href="http://www.tianhj.com/case.html" class="neo-footer-link">成功案例</a></li>
                        <li><a href="http://www.tianhj.com/news.html" class="neo-footer-link">资讯动态</a></li>
                        <li><a href="http://www.tianhj.com/culture.html" class="neo-footer-link">企业文化</a></li>
                        <li><a href="http://www.tianhj.com/contact.html" class="neo-footer-link">联系我们</a></li>
                        <li><a href="http://www.tianhj.com/job.html" class="neo-footer-link">招聘信息</a></li>
                    </ul>
                </div>

                
                <div class="neo-footer-column">
                    <h3 class="neo-footer-title">联系我们</h3>
                    <ul class="neo-footer-contact">
                        <li class="neo-footer-contact-item">
                            <span class="neo-footer-contact-icon">📍</span>
                            <span class="neo-footer-contact-text">小店区</span>
                        </li>
                        <li class="neo-footer-contact-item">
                            <span class="neo-footer-contact-icon">📞</span>
                            <span class="neo-footer-contact-text">400-882-5686</span>
                        </li>
                        <li class="neo-footer-contact-item">
                            <span class="neo-footer-contact-icon">📧</span>
                            <span class="neo-footer-contact-text">web77686@tianhj.com</span>
                        </li>
                        <li class="neo-footer-contact-item">
                            <span class="neo-footer-contact-icon">🕒</span>
                            <span class="neo-footer-contact-text">周一至周五 8:00-18:00</span>
                        </li>
                    </ul>
                </div>

                
                <div class="neo-footer-column">
                    <h3 class="neo-footer-title">站点地图</h3>
                    <ul class="neo-footer-sitemap">
                        
                        <li><a href="/sitemap.xml" class="neo-footer-link">网站XML地图</a></li>
                        <li><a href="/sitemap.txt" class="neo-footer-link">网站TXT地图</a></li>
                        <li><a href="/sitemap.html" class="neo-footer-link">网站HTML地图</a></li>
                        
                    </ul>
                </div>
            </div>
        </div>
    </div>

    
    <div class="neo-footer-links-section">
        <div class="neo-container">
            <h3 class="neo-footer-links-title">友情链接</h3>
            <div class="neo-footer-links-list">
                
                <a href="http://www.jsyzmtzm.com" target="_blank" class="neo-footer-friend-link">江苏茂腾照明有限公司</a>
                
                <a href="http://www.xiaoxiangbest.com" target="_blank" class="neo-footer-friend-link">深圳市益祥顺实业有限公司</a>
                
                <a href="http://www.muhopw.com" target="_blank" class="neo-footer-friend-link">井陉矿区派透企业服务有限责任公司</a>
                
                <a href="http://www.letgee.com" target="_blank" class="neo-footer-friend-link">呈贡县沿界天然纺织有限合伙企业</a>
                
                <a href="http://www.ykxinlinghang.com" target="_blank" class="neo-footer-friend-link">永康市昊煌工贸有限公司</a>
                
                <a href="http://www.yjw68.com" target="_blank" class="neo-footer-friend-link">南京蚁米电子科技有限公司</a>
                
                <a href="http://www.dongfangjiuru.com" target="_blank" class="neo-footer-friend-link">北京东方九如服装设计院</a>
                
                <a href="http://www.jxyyhmjs.com" target="_blank" class="neo-footer-friend-link">弋阳县鸿明建设有限公司</a>
                
                <a href="http://www.whwkj.com" target="_blank" class="neo-footer-friend-link">巴中市抓佛交通用具有限公司</a>
                
                <a href="http://www.ywiwvr.com" target="_blank" class="neo-footer-friend-link">满城县子操古玩有限合伙企业</a>
                
                <a href="http://www.yxinx.com" target="_blank" class="neo-footer-friend-link">常山县七伐标牌合伙企业</a>
                
                <a href="http://www.hsmtzs.com" target="_blank" class="neo-footer-friend-link">常德市美庭建材有限公司</a>
                
                <a href="http://www.weizonyn.com" target="_blank" class="neo-footer-friend-link">云南微众科技有限公司</a>
                
                <a href="http://www.bdqnbz.com" target="_blank" class="neo-footer-friend-link">七色天空（北京）教育科技有限公司</a>
                
                <a href="http://www.syqjfw.com" target="_blank" class="neo-footer-friend-link">长沙顺友清洁服务有限公司</a>
                
                <a href="http://www.uu-x.com" target="_blank" class="neo-footer-friend-link">河源市醒挥机械加工股份有限公司</a>
                
                <a href="http://www.bhhge.com" target="_blank" class="neo-footer-friend-link">北海好格尔冷气安装有限公司</a>
                
                <a href="http://www.mingshizxszft.com" target="_blank" class="neo-footer-friend-link">广东明世在线教育科技有限公司深圳福田分公司</a>
                
                <a href="http://www.szgyppx.com" target="_blank" class="neo-footer-friend-link">郴州市开发区震东创业信息中心</a>
                
                <a href="http://www.cnguanju.com" target="_blank" class="neo-footer-friend-link">上海贯巨电机有限公司</a>
                
                <a href="http://www.redianshihua.com" target="_blank" class="neo-footer-friend-link">河南省厚鼎成商贸有限公司</a>
                
                <a href="http://www.91guodong.com" target="_blank" class="neo-footer-friend-link">玉山县块许财会股份有限公司</a>
                
                <a href="http://www.jslrhm.com" target="_blank" class="neo-footer-friend-link">扬州龙润红木家具有限公司</a>
                
                <a href="http://www.b3583.com" target="_blank" class="neo-footer-friend-link">乌拉特中旗溶庄量具股份公司</a>
                
                <a href="http://www.jdshfw.com" target="_blank" class="neo-footer-friend-link">北京泰瑞特检测技术服务有限责任公司</a>
                
                <a href="http://www.jglylock.com" target="_blank" class="neo-footer-friend-link">临沂经济技术开发区固恒商贸有限公司</a>
                
                <a href="http://www.zuimei519.com" target="_blank" class="neo-footer-friend-link">吉林市醉美商贸有限公司</a>
                
                <a href="http://www.lxbmwifi.com" target="_blank" class="neo-footer-friend-link">察隅县架桑作业保护有限合伙企业</a>
                
                <a href="http://www.naidashudian.com" target="_blank" class="neo-footer-friend-link">汉寿县佳乐佳生活超市</a>
                
                <a href="http://www.shurenweb.com" target="_blank" class="neo-footer-friend-link">嘉禾县黎二休闲零食有限责任公司</a>
                
                <a href="http://www.wcx-erp.com" target="_blank" class="neo-footer-friend-link">万成喜（广西）国际贸易有限公司</a>
                
                <a href="http://www.ehaiw.com" target="_blank" class="neo-footer-friend-link">瓯海区元警显示设备合伙企业</a>
                
                <a href="http://www.lh515.com" target="_blank" class="neo-footer-friend-link">广州英贤科技有限公司</a>
                
                <a href="http://www.ldtjscl.com" target="_blank" class="neo-footer-friend-link">山东利德通金属材料有限公司</a>
                
                <a href="http://www.gzstlba.com" target="_blank" class="neo-footer-friend-link">贵州特狼保安服务有限公司遵义分公司</a>
                
                <a href="http://www.hebeidaochi.com" target="_blank" class="neo-footer-friend-link">河北道驰机械设备有限公司</a>
                
                <a href="http://www.welaigou.com" target="_blank" class="neo-footer-friend-link">长宁县胞刘商务服务有限公司</a>
                
                <a href="http://www.dadifenfang.com" target="_blank" class="neo-footer-friend-link">张家港采食轩食品有限公司</a>
                
                <a href="http://www.xihengsolar.com" target="_blank" class="neo-footer-friend-link">河北熙恒新能源科技有限公司</a>
                
                <a href="http://www.xlnwqc.com" target="_blank" class="neo-footer-friend-link">广西信优济商贸有限责任公司</a>
                
                <a href="http://www.jsyfdwell.com" target="_blank" class="neo-footer-friend-link">江苏远方迪威尔设备科技有限公司</a>
                
                <a href="http://www.hmsc168.com" target="_blank" class="neo-footer-friend-link">五大连池市让速靶向药股份公司</a>
                
                <a href="http://www.wjs985.com" target="_blank" class="neo-footer-friend-link">枣阳市吸达纸业股份有限公司</a>
                
                <a href="http://www.lht114.com" target="_blank" class="neo-footer-friend-link">大石桥市时密巧克力有限合伙企业</a>
                
                <a href="http://www.bjtfz.com" target="_blank" class="neo-footer-friend-link">永嘉县屋冰标牌有限责任公司</a>
                
                <a href="http://www.xiwangqianbao.com" target="_blank" class="neo-footer-friend-link">大连希望钱包电子商务有限公司</a>
                
                <a href="http://www.inanzhi.com" target="_blank" class="neo-footer-friend-link">堆龙德庆县圆潜变速箱维修合伙企业</a>
                
                <a href="http://www.hyunfk.com" target="_blank" class="neo-footer-friend-link">福州海博信息技术有限公司</a>
                
                <a href="http://www.zgmbch.com" target="_blank" class="neo-footer-friend-link">河南美邦企业营销策划有限公司</a>
                
                <a href="http://www.ayhlian.com" target="_blank" class="neo-footer-friend-link">深圳市爱优网信息技术有限公司</a>
                
                <a href="http://www.roller-door.com" target="_blank" class="neo-footer-friend-link">佛山市方之圆钢材有限公司</a>
                
                <a href="http://www.eymmall.com" target="_blank" class="neo-footer-friend-link">武汉德创博胜电子商务有限公司</a>
                
                <a href="http://www.yishangcloud.com" target="_blank" class="neo-footer-friend-link">西安智联易尚传感科技有限公司</a>
                
                <a href="http://www.nmglww.com" target="_blank" class="neo-footer-friend-link">贵阳市费供包装用纸有限公司</a>
                
                <a href="http://www.xiangyangweb.com" target="_blank" class="neo-footer-friend-link">南安市向阳乡公益事业促进会</a>
                
                <a href="http://www.ysy969.com" target="_blank" class="neo-footer-friend-link">安徽尚盈投资管理有限公司</a>
                
                <a href="http://www.ccu19.com" target="_blank" class="neo-footer-friend-link">资溪县索诺包装相关设备有限责任公司</a>
                
                <a href="http://www.lxwyx168.com" target="_blank" class="neo-footer-friend-link">兰溪市舒剑平网络科技工作室</a>
                
                <a href="http://www.hishangxi.com" target="_blank" class="neo-footer-friend-link">上熙医疗美容诊所（山东）集团有限公司</a>
                
                <a href="http://www.hgjinzun.com" target="_blank" class="neo-footer-friend-link">上海点尚贸易有限公司</a>
                
                <a href="http://www.whbaoxian.com" target="_blank" class="neo-footer-friend-link">陆良县三语灯具有限合伙企业</a>
                
                <a href="http://www.yangcaili.com" target="_blank" class="neo-footer-friend-link">武山县延亩设备有限公司</a>
                
                <a href="http://www.shdenglin.com" target="_blank" class="neo-footer-friend-link">上海登临消防工程有限公司</a>
                
                <a href="http://www.rujgdn8.com" target="_blank" class="neo-footer-friend-link">上海诚颐汽车租赁有限公司</a>
                
                <a href="http://www.sxxifu.com" target="_blank" class="neo-footer-friend-link">山西锦衣卫服饰有限公司</a>
                
                <a href="http://www.leyuan01.com" target="_blank" class="neo-footer-friend-link">怀集县诞震农机具股份公司</a>
                
                <a href="http://www.209521.com" target="_blank" class="neo-footer-friend-link">武汉奥曙新能源科技有限公司</a>
                
                <a href="http://www.putuoshanxia.com" target="_blank" class="neo-footer-friend-link">舟山市南音商贸有限公司</a>
                
                <a href="http://www.kmxiaoyuer.com" target="_blank" class="neo-footer-friend-link">云南力码科技有限公司</a>
                
                <a href="http://www.xy3110666.com" target="_blank" class="neo-footer-friend-link">兴义新城医院</a>
                
                <a href="http://www.eyew3.com" target="_blank" class="neo-footer-friend-link">灌云县伊山镇秀铭农产品经营部</a>
                
                <a href="http://www.nuobaohj.com" target="_blank" class="neo-footer-friend-link">北京诺保环境科技有限公司</a>
                
                <a href="http://www.jszyy020.com" target="_blank" class="neo-footer-friend-link">广州中医药大学金沙洲医院</a>
                
                <a href="http://www.dingruijz.com" target="_blank" class="neo-footer-friend-link">东莞鼎瑞建筑材料有限公司</a>
                
                <a href="http://www.wangpu888.com" target="_blank" class="neo-footer-friend-link">上海东同电子商务有限公司</a>
                
                <a href="http://www.zi54.com" target="_blank" class="neo-footer-friend-link">深圳小海星投资发展有限公司</a>
                
                <a href="http://www.qdxiangruisheng.com" target="_blank" class="neo-footer-friend-link">青岛祥瑞昇电子有限公司</a>
                
                <a href="http://www.karongtianxia.com" target="_blank" class="neo-footer-friend-link">山东聊城玩卡电子商务有限公司</a>
                
                <a href="http://www.lnjlyxgs.com" target="_blank" class="neo-footer-friend-link">辽宁建隆金属结构有限公司</a>
                
                <a href="http://www.tjyywh.com" target="_blank" class="neo-footer-friend-link">盛世易洋（天津）文化发展有限公司</a>
                
                <a href="http://www.zhangshanghangu.com" target="_blank" class="neo-footer-friend-link">天津市滨海新区嘉和网迅科技咨询服务中心</a>
                
                <a href="http://www.zgncphyds.com" target="_blank" class="neo-footer-friend-link">重庆市好日子农业发展有限公司</a>
                
                <a href="http://www.misschina-hg.com" target="_blank" class="neo-footer-friend-link">黄冈晟星网络科技有限公司</a>
                
                <a href="http://www.dmhyz.com" target="_blank" class="neo-footer-friend-link">靖江市留墙酒店股份公司</a>
                
                <a href="http://www.lgqxll.com" target="_blank" class="neo-footer-friend-link">湘乡市坛幕生物技术股份公司</a>
                
                <a href="http://www.h2h520.com" target="_blank" class="neo-footer-friend-link">西安经济技术开发区拾梦婚礼策划工作室</a>
                
                <a href="http://www.xyjlpj.com" target="_blank" class="neo-footer-friend-link">襄阳君雷汽车配件有限公司</a>
                
                <a href="http://www.jiediancloud.com" target="_blank" class="neo-footer-friend-link">深圳市友电新能源智慧科技有限公司</a>
                
                <a href="http://www.05g1157vil.com" target="_blank" class="neo-footer-friend-link">北京溪流湖科技有限公司</a>
                
                <a href="http://www.hscwjt.com" target="_blank" class="neo-footer-friend-link">河南恒少会计服务集团有限公司</a>
                
                <a href="http://www.yedengread.com" target="_blank" class="neo-footer-friend-link">重庆亿仰科技有限公司</a>
                
                <a href="http://www.ytgjjxwx.com" target="_blank" class="neo-footer-friend-link">云南铜业高级技工学校</a>
                
                <a href="http://www.sxsdkg.com" target="_blank" class="neo-footer-friend-link">陕西盛达控股有限公司</a>
                
                <a href="http://www.yueyezs.com" target="_blank" class="neo-footer-friend-link">江苏越业设计装饰工程有限公司上海分公司</a>
                
                <a href="http://www.yunmowu.com" target="_blank" class="neo-footer-friend-link">九台市却署古董和收藏品有限责任公司</a>
                
                <a href="http://www.dnhtc.com" target="_blank" class="neo-footer-friend-link">杭州烈手文化创意有限公司</a>
                
                <a href="http://www.runhuahuanbao.com" target="_blank" class="neo-footer-friend-link">邹平越华环保设备有限公司</a>
                
                <a href="http://www.fytraining.com" target="_blank" class="neo-footer-friend-link">上海反影企业管理咨询有限公司</a>
                
                <a href="http://www.jingyuhuahui.com" target="_blank" class="neo-footer-friend-link">郑州市景禹花卉租赁有限公司</a>
                
                <a href="http://www.jingjiantech.com" target="_blank" class="neo-footer-friend-link">北京京剑科技有限公司</a>
                
            </div>
        </div>
    </div>

    
    <div class="neo-footer-bottom">
        <div class="neo-container">
            <div class="neo-footer-bottom-content">
                <p class="neo-footer-copyright">
                    ©  田豪杰. 保留所有权利.
                    
            
                </p>
            </div>
        </div>
    </div>
</footer>


<button class="neo-back-to-top" id="neoBackToTop" aria-label="返回顶部">
    <span>↑</span>
</button>

<script>
(function() {
    // 返回顶部按钮
    const backToTopButton = document.getElementById('neoBackToTop');
    
    if (backToTopButton) {
        window.addEventListener('scroll', function() {
            if (window.scrollY > 300) {
                backToTopButton.classList.add('active');
            } else {
                backToTopButton.classList.remove('active');
            }
        });
        
        backToTopButton.addEventListener('click', function() {
            window.scrollTo({
                top: 0,
                behavior: 'smooth'
            });
        });
    }
    
    // 滚动显示动画
    const observerOptions = {
        threshold: 0.1,
        rootMargin: '0px 0px -50px 0px'
    };

    const observer = new IntersectionObserver((entries) => {
        entries.forEach(entry => {
            if (entry.isIntersecting) {
                entry.target.classList.add('revealed');
            }
        });
    }, observerOptions);

    // 观察所有需要动画的元素
    document.querySelectorAll('.neo-scroll-reveal').forEach(element => {
        observer.observe(element);
    });
})();
</script>



    <script>
        // 滚动显示动画
        (function() {
            const observerOptions = {
                threshold: 0.1,
                rootMargin: '0px 0px -50px 0px'
            };

            const observer = new IntersectionObserver((entries) => {
                entries.forEach(entry => {
                    if (entry.isIntersecting) {
                        entry.target.classList.add('revealed');
                    }
                });
            }, observerOptions);

            // 观察所有需要动画的元素
            document.querySelectorAll('.neo-scroll-reveal').forEach(element => {
                observer.observe(element);
            });
        })();
    </script>
</body>
</html>