<!DOCTYPE html>
<html lang="zh-CN">
	<head>
		<meta charset="utf-8">
		<meta http-equiv="X-UA-Compatible" content="IE=edge">
		<meta name="viewport" content="width=device-width,target-densitydpi=high-dpi,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
		<meta name="apple-mobile-web-app-capable" content="yes">
		<meta name="apple-mobile-web-app-status-bar-style" content="black">
		<meta name="format-detection" content="telephone=no">
		<title>大型网站如何优化加载速度-思洋互动</title>
		<meta name="keywords" content="大型网站如何优化加载速度">
	    <meta name="description" content="大型网站优化加载速度需从技术架构、资源优化、传输效率、缓存策略、服务性能五个层面综合施策，以下为具体解决方案及实践案例：一、技术架构优化：减少后端处理压力负载均衡...">
		<meta name="renderer" content="webkit" />
		<link href="/css/main.css?v=39" rel="stylesheet">
		<link href="/css/base.css?v=39" rel="stylesheet">
        <link href="/css/swiper-3.4.2.min.css" rel="stylesheet">
		<script type="text/javascript" src="/js/jquery.min.js"></script>
        <script type="text/javascript" src="/js/swiper-3.4.2.min.js"></script>
		<!--[if lt IE 9]>
            <script src="/js/html5shiv.min.js"></script>
            <script src="/js/respond.min.js"></script>
            <link href="/css/ie.css" rel="stylesheet">
        <![endif]-->
		<script>
var _hmt = _hmt || [];
(function() {
  var hm = document.createElement("script");
  hm.src = "https://hm.baidu.com/hm.js?8914d517c927d8e794148d05e387fb17";
  var s = document.getElementsByTagName("script")[0]; 
  s.parentNode.insertBefore(hm, s);
})();
</script>
<link rel="canonical" href="https://www.ciya.cn/article/10543.html">
		</head>
	<body class="no-banner">
		<div class="container">
			<div class="header">
	<div class="header-top">
		<div class="w1700">
			<a href="https://www.ciya.cn/"><img src="/images/logo.png?v=2"></a>
		</div>
	</div>
	<div class="header_b">
		<header class="slide">
			<div id="navToggle" class="menu-handler">
				<span class="burger burger-1 trans"></span>
				<span class="burger burger-2 trans-fast"></span>
				<span class="burger burger-3 trans"></span>
			</div>
		</header>
	</div>
	<nav class="slide">
		<div class="w1700">
			<a class="index" href="/"></a>
			<ul>
								<li><a href="https://www.ciya.cn/case/12.html">项目案例</a></li>
								<li><a href="https://www.ciya.cn/website/9.html">网站建设</a></li>
								<li><a href="https://www.ciya.cn/marketing/10.html">网络营销</a></li>
								<li><a href="https://www.ciya.cn/media/11.html">新媒体</a></li>
								<li class="active"><a href="https://www.ciya.cn/news/16.html">动态</a></li>
								<li><a href="https://www.ciya.cn/about/8.html">关于</a></li>
								<li><a href="https://www.ciya.cn/contact/13.html">联系</a></li>
							</ul>
		</div>
	</nav>
</div>            <div class="content slide">
                <div class="position bgf1">
                    <div class="w1700">
                        <a href="https://www.ciya.cn/">首页 ></a>
                        <a href="https://www.ciya.cn/news/16.html">动态 ></a>
                        <a href="https://www.ciya.cn/news/42.html">运营推广</a>
                    </div>
                </div>
                <div class="case-type">
                    <div class="w1700">
                                                <a href="https://www.ciya.cn/news/32.html" >品牌合作</a>
                                                <a href="https://www.ciya.cn/news/31.html" >新闻动态</a>
                                                <a href="https://www.ciya.cn/news/38.html" >网站建设</a>
                                                <a href="https://www.ciya.cn/news/41.html" >网站制作</a>
                                                <a href="https://www.ciya.cn/news/40.html" >网站设计</a>
                                                <a href="https://www.ciya.cn/news/42.html"  class="active">运营推广</a>
                                                <a href="https://www.ciya.cn/news/35.html" >网站知识</a>
                                            </div>
                </div>
                <div class="padding-tb80">
                    <div class="w1700 clear">
                        <div class="fl xwxq-l">
                            <div class="noselettext">
                                <div class="xwxq-title mg-bt60 wow slideUp">
                                    <h1 class="mg-bt35">大型网站如何优化加载速度</h1>
                                    <span>时间：2025-10-17</span>
                                </div>
                                <div class="edit2 mg-bt60 wow slideUp">
                                                                        <div><div><div><div id="answer_text_id"><div class="custom-html md-stream-desktop"><p>大型网站优化加载速度需从<strong>技术架构、资源优化、传输效率、缓存策略、服务性能</strong>五个层面综合施策，以下为具体解决方案及实践案例：</p><p style="text-align: center;"><img src="/upload/image/20250929/1759158965547973.jpg" title="1759158965547973.jpg" alt="1759158965547973.jpg"/></p><h3><strong>一、技术架构优化：减少后端处理压力</strong></h3><ol class=" list-paddingleft-2"><li><p><strong>负载均衡与集群部署</strong></p></li><ul class=" list-paddingleft-2"><li><p>通过负载均衡器（如Nginx、LVS）将请求分发至多台服务器，避免单点过载。例如，某电商网站采用“三台Web服务器+负载均衡”架构，使每台服务器处理的并发请求降至原来的1/3，响应时间缩短40%。</p></li><li><p>分布式缓存（如Redis、Memcached）存储高频访问数据（如用户会话、商品信息），减少数据库查询。某社交平台通过缓存热点内容，使数据库负载降低60%，页面生成速度提升2倍。</p></li></ul><li><p><strong>异步处理与消息队列</strong></p></li><ul class=" list-paddingleft-2"><li><p>使用消息队列（如RabbitMQ、Kafka）解耦高并发任务（如订单处理、日志记录）。某物流网站通过异步化订单状态更新，将系统吞吐量从每秒500单提升至2000单，延迟稳定在50ms以内。</p></li></ul><li><p><strong>代码优化与资源复用</strong></p></li><ul class=" list-paddingleft-2"><li><p>清理冗余代码、合并重复逻辑，减少CPU计算量。例如，某金融网站通过重构代码，使交易页面加载时间从3.2秒降至1.5秒。</p></li><li><p>复用数据库连接、网络通信连接等资源，避免频繁创建销毁的开销。某视频平台通过连接池技术，使数据库连接建立时间减少90%。</p></li></ul></ol><h3><strong>二、资源优化：压缩与精简前端内容</strong></h3><ol class=" list-paddingleft-2"><li><p><strong>图片与媒体压缩</strong></p></li><ul class=" list-paddingleft-2"><li><p>使用TinyPNG、ImageOptim等工具压缩图片，某图片站通过压缩将5MB头像缩至200KB，加载速度提升25倍。</p></li><li><p>对视频采用流媒体格式（如HLS、DASH），按需加载片段，减少初始缓冲时间。某教育网站通过视频分片加载，使课程页面首屏时间从8秒降至2秒。</p></li></ul><li><p><strong>代码压缩与合并</strong></p></li><ul class=" list-paddingleft-2"><li><p>通过Webpack、Vite等工具压缩CSS/JS文件，移除空格、注释，合并同类文件。某新闻网站合并后，HTTP请求从12个减至4个，页面体积缩小50%。</p></li><li><p>使用CSS Sprites合并小图标，减少图片请求次数。某电商网站通过雪碧图技术，使图标加载时间从1.2秒降至0.3秒。</p></li></ul><li><p><strong>按需加载与懒加载</strong></p></li><ul class=" list-paddingleft-2"><li><p>对非关键资源（如图片、视频）采用懒加载，用户滚动到可视区域时再加载。某博客网站通过懒加载图片，使首屏加载时间从4.5秒降至1.8秒。</p></li><li><p>预加载关键资源（如下一页内容），某搜索引擎通过预加载技术，使用户点击搜索结果后的页面加载时间缩短70%。</p></li></ul></ol><h3><strong>三、传输优化：减少网络延迟</strong></h3><ol class=" list-paddingleft-2"><li><p><strong>CDN加速</strong></p></li><ul class=" list-paddingleft-2"><li><p>将静态资源（如图片、CSS、JS）部署至CDN节点（如阿里云CDN、腾讯云CDN），用户从最近节点获取数据。某图片站通过CDN，使北京用户访问速度从8秒降至1秒，用户留存率提升30%。</p></li><li><p>设置合理的缓存时间（如图片缓存7天，CSS/JS缓存1天），减少重复传输。某企业官网通过缓存策略，使回源请求量减少80%。</p></li></ul><li><p><strong>HTTP/2与协议优化</strong></p></li><ul class=" list-paddingleft-2"><li><p>启用HTTP/2协议，支持多路复用、头部压缩，减少连接建立时间。某游戏网站通过HTTP/2，使资源加载并行度提升3倍，页面完整加载时间从5秒降至2秒。</p></li><li><p>开启Keep-Alive保持长连接，避免频繁TCP握手。某电商网站通过Keep-Alive，使连接复用率从40%提升至90%，服务器CPU负载降低25%。</p></li></ul><li><p><strong>Gzip压缩</strong></p></li><ul class=" list-paddingleft-2"><li><p>对HTML、CSS、JS等文本资源启用Gzip压缩，减少传输体积。某金融平台通过Gzip，使页面传输量减少60%，加载速度提升1.5倍。</p></li></ul></ol><h3><strong>四、缓存策略：利用本地与服务器缓存</strong></h3><ol class=" list-paddingleft-2"><li><p><strong>浏览器缓存</strong></p></li><ul class=" list-paddingleft-2"><li><p>通过HTTP响应头设置缓存策略（如<code class=" inline">Cache-Control: max-age=31536000</code>），使浏览器缓存静态资源。某视频网站通过浏览器缓存，使用户重复访问时的资源加载时间从2秒降至0.1秒。</p></li><li><p>对不频繁更新的资源设置长期缓存，对频繁更新的资源设置短期缓存或版本号控制。</p></li></ul><li><p><strong>服务端缓存</strong></p></li><ul class=" list-paddingleft-2"><li><p>使用反向代理（如Nginx、Varnish）缓存动态内容，减少后端处理。某新闻网站通过反向代理，使热门文章页面的响应时间从800ms降至200ms。</p></li><li><p>对API响应进行缓存，避免重复计算。某社交平台通过API缓存，使用户动态页面的生成时间从1.2秒降至0.4秒。</p></li></ul></ol><h3><strong>五、服务性能优化：提升硬件与网络能力</strong></h3><ol class=" list-paddingleft-2"><li><p><strong>服务器升级与带宽扩展</strong></p></li><ul class=" list-paddingleft-2"><li><p>将服务器带宽从2M升级至8M，某企业官网通过带宽扩容，使页面加载时间从3分钟降至几十秒。</p></li><li><p>使用SSD固态硬盘替代机械硬盘，提升I/O性能。某数据库通过SSD升级，使查询响应时间从50ms降至10ms。</p></li></ul><li><p><strong>数据库优化</strong></p></li><ul class=" list-paddingleft-2"><li><p>定期清理无用数据（如日志、过期会话），某博客平台通过清理旧数据，使数据库查询速度提升40%。</p></li><li><p>对高频查询建立索引，某电商网站通过索引优化，使商品搜索时间从2秒降至0.3秒。</p></li></ul></ol><h3><strong>六、监控与持续优化</strong></h3><ol class=" list-paddingleft-2"><li><p><strong>性能测试工具</strong></p></li><ul class=" list-paddingleft-2"><li><p>使用PageSpeed Insights、GTmetrix等工具定期检测加载速度，识别瓶颈。某网站通过GTmetrix的瀑布图分析，发现某第三方脚本导致页面延迟，优化后首屏时间缩短1秒。</p></li><li><p>模拟慢网络（如3G）测试，确保弱网环境下可用性。某移动应用通过慢网测试，优化了图片加载策略，使3G网络下的页面完整加载时间从12秒降至5秒。</p></li></ul><li><p><strong>用户反馈收集</strong></p></li><ul class=" list-paddingleft-2"><li><p>通过问卷、行为分析工具收集用户对加载速度的评价。某游戏平台根据用户反馈，优化了首屏资源加载顺序，使新用户留存率提升15%。</p></li></ul></ol><h3><strong>实践案例</strong></h3><ul class=" list-paddingleft-2"><li><p><strong>某电商网站</strong>：通过CDN加速、图片压缩、异步加载，使页面加载速度从6秒降至1.8秒，转化率提升20%。</p></li><li><p><strong>某新闻平台</strong>：采用HTTP/2、代码合并、浏览器缓存，使首屏时间从4秒降至1.2秒，用户日均访问时长增加25%。</p></li><li><p><strong>某视频网站</strong>：通过懒加载、Gzip压缩、服务端缓存，使视频播放缓冲时间从3秒降至0.5秒，用户完播率提升35%。</p></li></ul><h3><strong>总结</strong></h3><p>大型网站优化加载速度需<strong>“技术+资源+传输+缓存+服务”五维联动</strong>，结合监控工具持续迭代。核心原则包括：</p><ol class=" list-paddingleft-2"><li><p><strong>减少请求次数</strong>（合并文件、懒加载）；</p></li><li><p><strong>压缩传输体积</strong>（图片/代码压缩、Gzip）；</p></li><li><p><strong>利用缓存</strong>（浏览器、CDN、服务端）；</p></li><li><p><strong>提升服务能力</strong>（负载均衡、异步处理、硬件升级）。<br/>通过上述方法，可显著提升用户体验，降低跳出率，最终实现业务增长。</p></li></ol></div></div></div></div></div>                                </div>
                            </div>
                                                        <div class="xwxq-bot bgf1 wow slideUp">
                                <div class="xwxq-fy clear">
                                    <a class="fl" href="/article/10548.html"><i></i>网站运营推广五不准</a>
                                    <a class="fr" href="/article/10537.html"><i></i>网站运营如何动态优化策略</a>
                                </div>
                                <a class="fhlb" href="#"></a>
                            </div>
                        </div>
                        <div class="fr xwxq-r">
                            <div class="xwxq-tj-page bgf1 mg-bt40 wow slideUp">
                                <div class="xwxq-tj-warp bgfff">
                                    <div class="tjxw-title mg-bt30">
                                        <h3>最新案例</h3><span>LATEST CASES</span>
                                    </div>
                                    <div class="zxal">
                                        <div class="swiper-container">
                                            <div class="swiper-wrapper">
                                                                                                        <div class="imgscale li swiper-slide">
                                                        <a href="https://www.ciya.cn/article/409.html">
                                                            <div class="img100 mg-bt20"><img src="/upload/20211214/20211214103120.jpg" alt="广州呼吸研究院"/></div>
                                                            <p>广州呼吸研究院</p>
                                                        </a>
                                                    </div>
                                                                                                        <div class="imgscale li swiper-slide">
                                                        <a href="https://www.ciya.cn/article/433.html">
                                                            <div class="img100 mg-bt20"><img src="/upload/20211214/20211214102846.jpg" alt="融创集团"/></div>
                                                            <p>融创集团</p>
                                                        </a>
                                                    </div>
                                                                                                        <div class="imgscale li swiper-slide">
                                                        <a href="https://www.ciya.cn/article/268.html">
                                                            <div class="img100 mg-bt20"><img src="/upload/20211214/20211214102923.jpg" alt="粤海集团"/></div>
                                                            <p>粤海集团</p>
                                                        </a>
                                                    </div>
                                                                                                        <div class="imgscale li swiper-slide">
                                                        <a href="https://www.ciya.cn/article/414.html">
                                                            <div class="img100 mg-bt20"><img src="/upload/20211216/20211216115258.jpg" alt="恒大足球学校"/></div>
                                                            <p>恒大足球学校</p>
                                                        </a>
                                                    </div>
                                                                                                        <div class="imgscale li swiper-slide">
                                                        <a href="https://www.ciya.cn/article/477.html">
                                                            <div class="img100 mg-bt20"><img src="/upload/20211214/20211214102958.jpg" alt="侨鑫集团"/></div>
                                                            <p>侨鑫集团</p>
                                                        </a>
                                                    </div>
                                                                                                </div>
                                        </div>
                                        <div class="zxalDot text-center swiperDot"></div>
                                    </div>
                                </div>
                            </div>
                            <div class="xwxq-tj-page bgf1 mg-bt40 wow slideUp">
                                <div class="xwxq-tj-warp bgfff">
                                    <div class="tjxw-title tjxw-title-line mg-bt20">
                                        <h3>热点新闻</h3><span>TOP NEWS</span>
                                    </div>
                                    <ul class="rdxw">
                                                                                <li><a href="https://www.ciya.cn/article/7928.html">1  实体店面的网络营销策略：打造线上与线下的完美结合</a></li>
                                                                                <li><a href="https://www.ciya.cn/article/5177.html">2  小程序如何制作？解答小程序制作常见的两种方法！</a></li>
                                                                                <li><a href="https://www.ciya.cn/article/6439.html">3  欧美风格网站建设有哪些特点</a></li>
                                                                                <li><a href="https://www.ciya.cn/article/6131.html">4  关于北京市海淀区的网站在公安机关办理网站备案的公告</a></li>
                                                                                <li><a href="https://www.ciya.cn/article/7065.html">5  如何做好百度关键词优化</a></li>
                                                                            </ul>
                                </div>
                            </div>
                            <div class="xwxq-tj-page bgf1 wow slideUp">
                                <div class="xwxq-tj-warp bgfff">
                                    <div class="tjxw-title tjxw-title-line mg-bt20">
                                        <h3>最新动态</h3><span>NEWS</span>
                                    </div>
                                    <ul class="rdxw">
                                                                                <li><a href="https://www.ciya.cn/article/10606.html">1  网站SEO优化的一致化与标准化</a></li>
                                                                                <li><a href="https://www.ciya.cn/article/10602.html">2  网站外包运营推广优势</a></li>
                                                                                <li><a href="https://www.ciya.cn/article/10595.html">3  更新频次低的网站该如何SEO优化</a></li>
                                                                                <li><a href="https://www.ciya.cn/article/10592.html">4  网站付费推广的优化策略</a></li>
                                                                                <li><a href="https://www.ciya.cn/article/10583.html">5  网站零起点快速优化攻略</a></li>
                                                                                <li><a href="https://www.ciya.cn/article/10577.html">6  网站性能优化策略</a></li>
                                                                                <li><a href="https://www.ciya.cn/article/10571.html">7  网站优化如何确保完整性与稳定性</a></li>
                                                                                <li><a href="https://www.ciya.cn/article/10565.html">8  网站运营SEO优化关键词布局</a></li>
                                                                            </ul>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="footerbox">
	<div class="footer">
		<div class="w1700">
			<ul>
				<li>
					<span class="fttitle">思洋 · 广州总部</span>
					<div>
						<p>广州天河区珠江新城富力盈力大厦北塔2706</p>
						<p>020-38013166（网站咨询专线）</p>
					</div>
					<p>400-001-5281 （售后服务热线）</p>
				</li>
				<li>
					<span class="fttitle">思洋 · 深圳</span>
					<div>
						<p>深圳市坂田十二橡树庄园F1-7栋</p>
						<p>Site/ http://www.szciya.com </p>
						<p>E-mail/ itciya@vip.163.com</p>
					</div>
					<p>品牌服务专线：400-001-5281 </p>
				</li>
				<li>
					<span class="fttitle">思洋 · 湖南</span>
					<div>
						<p>长沙市天心区芙蓉中路三段398号新时空大厦5楼</p>
						<p>联系电话/ (+86 0731)88282200</p>
					</div>
					<p>品牌服务专线/ 400-966-8830</p>
				</li>
				<li class="lastli">
					<p class="mt10">旗下运营网站：</p>
					<div class="mt10">
						<img src="/images/ftlogo2.png">
						<img src="/images/gogo.png">
						<img src="/images/ftlogo3.png">
						<img src="/images/ftlogo4.png">
						<img src="/images/ftlogo11.png">
					</div>
				</li>
			</ul>
		</div>
	</div>
	<div class="ft_bottom">
		<div class="w1700">
			<p class="cop">Copyright © 2016 广州思洋文化传播有限公司，保留所有权利。 <a href="https://beian.miit.gov.cn/" target="_blank">粤ICP备09033321号</a>
			</p>
		</div>
	</div>
</div>
<div class="le-box active">
	<div class="t show780">
		<a href="tel:13570966600">
			<img src="/images/ml9-1.png?v=1" alt="" class="sow i">
			<img src="/images/ml9-1.png?v=1" alt="" class="iove i">
		</a>
	</div>
	<div class="t">
		<img src="/images/ml1-1.png?v=1" alt="" class="sow i">
		<img src="/images/ml1-1.png?v=1" alt="" class="iove i">
		<div class="iov">
			<div class="img">
				<img src="/images/qr.jpg" alt="与项目经理交流">
			</div>
			<div class="h">扫描二维码<br>与项目经理交流</div>
		</div>
	</div>
	<div class="t">
		<img src="/images/ml2-1.png?v=1" alt="" class="sow i">
		<img src="/images/ml2-1.png?v=1" alt="" class="iove i">
		<div class="iov">
			<div class="img">
				<img src="/images/qq001.jpg" alt="">
			</div>
			<div class="h">扫描二维码<br>与项目经理交流</div>
		</div>
	</div>
	<!--<div class="t">-->
		<!--<a href="http://wpa.qq.com/msgrd?v=3&amp;uin=1607245872&amp;site=ciya.cn&amp;menu=yes" target="_blank">-->
			<!--<img src="/images/ml2-1.png?v=1" alt="" class="sow i">-->
			<!--<img src="/images/ml2-1.png?v=1" alt="" class="iove i">-->
		<!--</a>-->
	<!--</div>-->
	<div class="t hide780">
		<a href="https://affim.baidu.com/unique_510425/chat?siteId=19536215&userId=510425&siteToken=8914d517c927d8e794148d05e387fb17" target="_blank">
			<img src="/images/ml3-1.png?v=1" alt="" class="sow i">
			<img src="/images/ml3-1.png?v=1" alt="" class="iove i">
		</a>
	</div>
</div>
<script>
	$(window).scroll(function(){
//		if($(window).scrollTop()>200){
//			$(".le-box").addClass("active");
//		}else{
//			$(".le-box").removeClass("active");
//		}
	})
</script>
<div class="wap_fx">
	<a href="tel:13570966600" class="phone"></a>
	<a href="mqqwpa://im/chat?chat_type=wpa&uin=1607245872&version=1&src_type=web&web_src=ciya.cn" target="_blank" class="qq"></a>
	<a href="javascript:;" class="wx2"></a>
	<a class="kef986" style="background:rgba(0,0,0,.6) url(/images/ml3-1.png?v=1) no-repeat center;background-size: cover;border-radius: 4px;" href="https://p.qiao.baidu.com/cps/chat?siteId=18513940&userId=510425&siteToken=e5e1bde478969b43bf99b7703a694c0b" target="_blank"></a>
</div>
<div class="wap-wxcode">
	<div class="middle-box">
		<div class="middle-inner">
			<div class="wap-wxcode-con">
				<img src="/images/ff_ewm.jpg" alt=""/>
				<div class="wap-wxcode-bot"><span class="wxname">ciya68</span><button class="copy-btn" data-clipboard-text="ciya68">点击复制</button></div>
				<div class="gb1002"></div>
			</div>
		</div>
	</div>
</div>
<input id="hide" type="hidden">
<script src="/js/clipboard.min.js"></script>
<script>
	$(function(){
		$(".wx2").click(function(){
			$(".wap-wxcode").show();
		});
		$(".gb1002").click(function(){
			$(".wap-wxcode").hide();
		});
		var copyBtn=new ClipboardJS('.copy-btn');
		copyBtn.on("success",function(e){
			// 复制成功
			// alert(e.text);
			showMessage('已成功复制微信号','success',2000)
			e.clearSelection();
		});
		copyBtn.on("error",function(e){
			//复制失败；
			showMessage('复制微信号失败','error',2000)
			console.log( e.action )
		});
		function showMessage(message,type,time) {
			let str = ''
			switch (type) {
				case 'success':
					str = '<div class="success-message" style="width: 100%;height: 50px;background-color: #030026;font-size:17px;text-align: center;color:#fff;position: fixed;left: 0%;bottom: 0%;line-height: 50px;z-index: 9999">\n' +
							'    <span class="mes-text">'+message+'</span></div>'
					break;
				case 'error':
					str = '<div class="error-message" style="width: 100%;height: 50px;background-color: #030026;font-size:17px;text-align: center;color: #fff;position: fixed;left: 0%;bottom: 0%;line-height: 50px;z-index: 9999">\n' +
							'    <span class="mes-text">'+message+'</span></div>'
			}
			$('body').append(str)
			setTimeout(function () {
				$('.'+type+'-message').remove()
			},time)
		}


		var ua = navigator.userAgent.toLowerCase();
		var isWeixin = ua.indexOf('micromessenger')!= -1;
		if(isWeixin){
			$(".kef986").hide();
		}

	})
</script>
            </div>
        </div>
		<script type="text/javascript" src="/js/trunk.js?v=2"></script>
        <script>
            var zxal=null;
            var len=$(".zxal .swiper-slide").length;
            if(len>1){
                zxal = new Swiper('.zxal .swiper-container',{
                    speed:600,
                    loop:true,
                    autoplay : 5000,
                    autoplayDisableOnInteraction : false,
                    pagination : '.zxalDot',
                    paginationClickable :true,
                })
            }else{
                $(".zxalDot").hide();
            }
        </script>
	</body>
</html>

