大数据离线----【网站流量日志数据--自定义】

1. 原理分析

在这里插入图片描述

分析 :

  1. 在采集数据的网页上进行埋点(在网页中预先加入小段 javascript 代码) , 编写采集数据的js(该js一般再用一个服务器去存储 , 为的就是解耦合 , 便于修改)

  2. 通过img标签的src属性解决跨域问题<img src="http://collection.itcast.cn/log.gif?name=allen&item=001">将数据传递给后端服务器

  3. 后端服务器执行步骤

    3.1接受请求 , 响应图片(log.gif)

    3.2 解析参数 , 保存数据

    3.3 设置cookie

  4. 埋点的js代码通常使用匿名JS函数(JS匿名函数自调用 , 执行且只执行一次 , 通常用于在页面加载的初始化相关操作)

扩展知识:js 自调用匿名函数
格式: (function(){})();
第一对括号向脚本返回未命名的函数;后一对空括号立即执行返回的未命名函数,括号内为匿名函数的参数。
自调用匿名函数的好处是,避免重名,自调用匿名函数只会在运行时执行一次,一般用于初始化。

2 . 设计实现

在这里插入图片描述

  • 2.1 确定搜集信息
名称途径备注
访问时间web serverNginx $msec
IPweb serverNginx $remote_add
域名JavaScriptdocument.domain
URLJavaScriptdocument.URL
页面标题JavaScriptdocument.title
分辨率JavaScriptwindow.screen.height & width
颜色深度JavaScriptwindow.screen.colorDepth
ReferrerJavaScriptdocument.referrer
浏览客户端web serverNginx $http_user_agent
客户端语言JavaScriptnavigator.language
访客标识cookieNginx $http_cookie
网站标识JavaScript自定义对象
状态码web serverNginx $status
发送内容量web serverNginx $body_bytes_sent
  • 2.2 确定埋点代码

  • 2.3 前端数据收集脚本

  • 2.4 后端脚本

    nginx 的 的 access_log 做日志收集,不过有个问题就是 nginx 配置本身的逻辑表达能力有限,所以选用 OpenResty做这个事情。

    OpenResty 是一个基于 Nginx 扩展出的高性能应用开发平台,内部集成了诸多有用的模块,其中的核心是通过 ngx_lua 模块集成了 Lua,从而在 nginx 配置文件中可以通过 Lua 来表述业务。
    Lua 是一种轻量小巧的脚本语言,用标准 C 语言编写并以源代码形式开放,其设计目的是为了嵌入应用程序中,从而为应用程序提供灵活的扩展和定制功能。
    首先,需要在 nginx 的配置文件中定义日志格式:

log_format tick
"$msec||$remote_addr||$status||$body_bytes_sent||$u_domain||$u_url|
|$u_title||$u_referrer||$u_sh||$u_sw||$u_cd||$u_lang||$http_user_ag
ent||$u_account";
  • 2.5 日志格式

日志格式主要考虑日志分隔符,一般会有以下几种选择:
固定数量的字符、制表符分隔符、空格分隔符、其他一个或多个字符、特的开始和结束文本

  • 2.6 日志切分

日志收集系统访问日志时间一长文件变得很大,而且日志放在一个文件不便于管理。通常要按时间段将日志切分,例如每天或每小时切分一个日志。通过crontab 定时调用一个 shell 脚本实现,如下:

vi rotatelog.sh
#!/bin/bash
_prefix="/path/to/nginx"
time=`date +%Y%m%d%H`
mv ${_prefix}/logs/ma.log ${_prefix}/logs/ma/ma-${time}.log
kill -USR1 `cat ${_prefix}/logs/nginx.pid `

USR1 通常被用来告知应用程序重载配置文件

cat ${_prefix}/logs/nginx.pid 取 nginx 的进程号

然后再/etc/crontab 里加入一行:

59 * * * * root /path/to/directory/rotatelog.sh

补充 :

  • cookie session

    cookie是浏览器端用于标识访客信息

    cookie值不能够重复

  • nginx日志默认一直写在同一个文件中 越来越大 不利于后续数据分析

    按时间 每小时切割一次

    按大小 每50M切割

3 . 系统环境部署细心 , 细心 ,再细心

所有软件都上传到/export/software下 , 选择node-3作为nginx服务器

服务器中安装依赖
yum -y install gcc perl pcre-devel openssl openssl-devel
上传 LuaJIT-2.0.4.tar.gz 并安装 LuaJIT
tar -zxvf LuaJIT-2.0.4.tar.gz -C /usr/local/src/
cd /usr/local/src/LuaJIT-2.0.4/
make && make install PREFIX=/usr/local/luajit
设置 LuaJIT 环境变量
vi /etc/profile
export LUAJIT_LIB=/usr/local/luajit/lib
export LUAJIT_INC=/usr/local/luajit/include/luajit-2.0
source /etc/profile
创建 modules 文件夹,保存 nginx 依赖的模块
mkdir -p /usr/local/nginx/modules
上传 nginx 依赖的模块

set-misc-nginx-module-0.29.tar.gz
lua-nginx-module-0.10.0.tar.gz
ngx_devel_kit-0.2.19.tar.gz
echo-nginx-module-0.58.tar.gz

将依赖的模块直接解压到 modules 目录
tar -zxvf lua-nginx-module-0.10.0.tar.gz -C /usr/local/nginx/modules/
tar -zxvf set-misc-nginx-module-0.29.tar.gz -C /usr/local/nginx/modules/
tar -zxvf ngx_devel_kit-0.2.19.tar.gz -C /usr/local/nginx/modules/
tar -zxvf echo-nginx-module-0.58.tar.gz -C /usr/local/nginx/modules/
安装 openresty
tar -zxvf openresty-1.9.7.3.tar.gz -C /usr/local/src/
cd /usr/local/src/openresty-1.9.7.3/
./configure --prefix=/usr/local/openresty --with-luajit && make && make install
安装 nginx
tar -zxvf nginx-1.8.1.tar.gz -C /usr/local/src/
编译 nginx 并支持其他模块
cd /usr/local/src/nginx-1.8.1/

./configure --prefix=/usr/local/nginx \
--with-ld-opt="-Wl,-rpath,/usr/local/luajit/lib" \
--add-module=/usr/local/nginx/modules/ngx_devel_kit-0.2.19 \
--add-module=/usr/local/nginx/modules/lua-nginx-module-0.10.0 \
--add-module=/usr/local/nginx/modules/set-misc-nginx-module-0.29 \
--add-module=/usr/local/nginx/modules/echo-nginx-module-0.58

make -j2
make install
备注:如果对 linux 相关操作不熟,请严格按照上述步骤搭建环境,切记心细,心细,再心细。

4. 自定义采集数据实现

我们将node-1作为网站服务器 , node-3作为nginx服务器

4.1 方案一 : 网站流量日志

a) 创建页面 index.html,添加埋点代码,放入 nginx 默认目录 nginx/html 下。

埋点代码

  • 创建一个全局数组(_maq) , 用于放置各种配置
  • ma.async = true 的意思是异步调用外部 js 文件即不阻塞浏览器的解析,待外部 js 下载完成后异步执行。
  • 自调用匿名函数 , 用来引入埋点的JS
  • 放入nginx步骤(这里我们将node-1作为网站访问服务器)
    • 下载httpd yum -y install httpd
    • 启动Apache Service service httpd start
    • 将index.html上传到 /var/www/html目录下 , 上传前一定要注意linux地址的修改
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>welcom to itheima</title>	
	
		<script type="text/javascript">
		var _maq = _maq || [];
		_maq.push(['_setAccount', 'AllenWoon']);
	 	//JS自调用匿名函数
		(function() {
			var ma = document.createElement('script'); 
			ma.type = 'text/javascript';
			ma.async = true;
            //引入的数据搜集的脚本
			ma.src = 'http://192.168.244.153/ma.js';
			var s = document.getElementsByTagName('script')[0]; 
			s.parentNode.insertBefore(ma, s);
		})();
		</script>
	</head>
	<body>
		<h1 align="center">黑马程序员--云计算大数据</h1>
		
	</body>
</html>

b) 在默认目录 nginx/html 下添加一个数据采集脚本 ma.js。

数据搜集脚本

  • 定义一个对象(params)用于存储要搜集的数据
  • 从document , window , navigator等内置对象中获取需要的参数
  • 将埋点中获取的参数拼接到params上
  • 最后将参数都拼接到args上 , 通过args传递到后端(lua+nginx)脚本
  • Image对象请求后端脚本 , 并将请求的图片设置为(1*1) , 为的是不让图片的显示干扰业务的继续推进
(function () {
    var params = {};
    //Document对象数据
    if(document) {
        params.domain = document.domain || ''; 
        params.url = document.URL || ''; 
        params.title = document.title || ''; 
        params.referrer = document.referrer || ''; 
    }   
    //Window对象数据
    if(window && window.screen) {
        params.sh = window.screen.height || 0;
        params.sw = window.screen.width || 0;
        params.cd = window.screen.colorDepth || 0;
    }   
    //navigator对象数据
    if(navigator) {
        params.lang = navigator.language || ''; 
    }   
    //解析_maq配置
    if(_maq) {
        for(var i in _maq) {
            switch(_maq[i][0]) {
                case '_setAccount':
                    params.account = _maq[i][1];
                    break;
                default:
                    break;
            }   
        }   
    }   
    //拼接参数串
    var args = ''; 
    for(var i in params) {
        if(args != '') {
            args += '&';
        }   
        args += i + '=' + encodeURIComponent(params[i]);
    }   
 
    //通过Image对象请求后端脚本
    var img = new Image(1, 1); 
    img.src = 'http://192.168.244.153/log.gif?' + args;
})();

c) 修改 nginx 的配置文件,添加自定义相关业务逻辑。

后端脚本Nginx+Lua

  • 设置并发处理最大连接数
  • 常规nginx的http配置
  • server中的location , 用于请求URL的匹配
    • 创建伪装成gif文件的location , 用于记录日志文件
    • 创建内部的location , 用于内部调用 , 生成日志文件并存放
  • 进入nginxcd /usr/local/nginx>cd conf/> 逻辑删除之前的nginx.conf文件mv nginx.conf nginx.conf.bak>将下面的nginx.conf拷贝到当前目录即可>启动nginx , 首先回到cd /usr/local/nginx处 , 执行启动命令sbin/nginx -c conf/nginx.conf==>实时监测日志文件cd logs/ tail -f user_defined.log
worker_processes  2;
#每一个worker进程能并发处理(发起)的最大连接数
events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;
	log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
					  
    log_format user_log_format "$msec||$remote_addr||$status||$body_bytes_sent||$u_domain||$u_url||$u_title||$u_referrer||$u_sh||$u_sw||$u_cd||$u_lang||$http_user_agent||$u_account";
    
    sendfile        on;  #允许sendfile方式传输文件,默认为off

    keepalive_timeout  65; #连接超时时间,默认为75s

    server {
        listen       80;
        server_name  localhost;
		location /log.gif {
			#伪装成gif文件
			default_type image/gif;    
			#nginx本身记录的access_log,日志格式为main
			access_log  logs/access.log  main;
		
			access_by_lua "
				-- 用户跟踪cookie名为__utrace
				local uid = ngx.var.cookie___utrace        
				if not uid then
					-- 如果没有则生成一个跟踪cookie,算法为md5(时间戳+IP+客户端信息)
					uid = ngx.md5(ngx.now() .. ngx.var.remote_addr .. ngx.var.http_user_agent)
				end 
				ngx.header['Set-Cookie'] = {'__utrace=' .. uid .. '; path=/'}
				if ngx.var.arg_domain then
				-- 通过subrequest到/i-log记录日志,将参数和用户跟踪cookie带过去
					ngx.location.capture('/i-log?' .. ngx.var.args .. '&utrace=' .. uid)
				end 
			";  
		
			#此请求资源本地不缓存
			add_header Expires "Fri, 01 Jan 1980 00:00:00 GMT";
			add_header Pragma "no-cache";
			add_header Cache-Control "no-cache, max-age=0, must-revalidate";
		
			#返回一个1×1的空gif图片
			empty_gif;
		}   
	
		location /i-log {
			#内部location,不允许外部直接访问
			internal;
		
			#设置变量,注意需要unescape
			set_unescape_uri $u_domain $arg_domain;
			set_unescape_uri $u_url $arg_url;
			set_unescape_uri $u_title $arg_title;
			set_unescape_uri $u_referrer $arg_referrer;
			set_unescape_uri $u_sh $arg_sh;
			set_unescape_uri $u_sw $arg_sw;
			set_unescape_uri $u_cd $arg_cd;
			set_unescape_uri $u_lang $arg_lang;
			set_unescape_uri $u_account $arg_account;

		
			#打开subrequest(子请求)日志
			log_subrequest on;
			#自定义采集的日志,记录数据到user_defined.log
			access_log logs/user_defined.log user_log_format;
		
			#输出空字符串
			echo '';
		}	
	
    }
}

d) 启动 nginx
sbin/nginx -c conf/nginx.conf

重启nginx==> sbin/nginx -s reload

e) 通过游览器访问 nginx

http://192.168.244.151/index.html

f) 观察自定义日志采集文件是否有对应的内容输出
tail -f logs/user_defined.log
此时还可以观察 nginx 默认的输出日志文件
tail -f logs/access.log
停止 nginx:
sbin/nginx –s stop

测试结果
1542023107.669||192.168.244.130||200||0||192.168.244.151||http://192.168.244.151/index.html||welcom to itheima||||768||1366||24||zh-CN||Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0||AllenWoon

4.2 方案二 : 页面点击事件

  • 前端埋点代码
    • 大致与方案一一致
    • 特殊 : 自定义了一个标签clstag , 用于触发点击事件
    • 同样的将这些静态文件(index2.html , page1.html , page2.html)以及jquery上传到node-1的/var/www/html/文件夹下即可

index2.html

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>welcom to itheima</title>
		<script src="/jquery-3.2.1.min.js">
		</script>
				 
		<script type="text/javascript">
		 var _maq = _maq || [];
		 _maq.push(['_setAccount', 'AllenWoon']);
		
		 $(function(){
		 $("a").click(function(){
				var clstag = $(this).attr("clstag");
				var _a_value = $(this).text();
				_maq.push(['_a_value',_a_value]);
				 clstag = clstag.split('|');
				for (i in clstag){ 
					_maq.push(['type'+i, clstag[i]]);
					}
					sendRequest();
				})
		});

		function sendRequest(){
				var ma = document.createElement('script'); 
				ma.type = 'text/javascript';
				ma.async = true;
				ma.src = 'http://192.168.244.153/ma.js';
				var s = document.getElementsByTagName('script')[0]; 
				s.parentNode.insertBefore(ma, s);
		}
		</script>
		
	</head>
	<body>
		<h1 align="center">黑马程序员--云计算大数据</h1>
		<a href="http://192.168.244.151/page1.html" target="_blank" clstag="click|index|page1">这是点击1</a><br/>
		
		<a href="http://192.168.244.151/page2.html" target="_blank" clstag="click|index|page2">这是点击2</a>
	</body>
</html>

page1.html

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>page1</title>	
	
		<script type="text/javascript">
		var _maq = _maq || [];
		_maq.push(['_setAccount', 'AllenWoon']);
	 
		(function() {
			var ma = document.createElement('script'); 
			ma.type = 'text/javascript';
			ma.async = true;
			ma.src = 'http://192.168.244.153/ma.js';
			var s = document.getElementsByTagName('script')[0]; 
			s.parentNode.insertBefore(ma, s);
		})();
        </script>
	</head>
	<body>
		<h1 align="center">黑马程序员--云计算大数据</h1>
		<h1 align="center">Page 1</h1>
	</body>
</html>

page2.html

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>page2</title>	
	
		<script type="text/javascript">
		var _maq = _maq || [];
		_maq.push(['_setAccount', 'AllenWoon']);
	 
		(function() {
			var ma = document.createElement('script'); 
			ma.type = 'text/javascript';
			ma.async = true;
			ma.src = 'http://192.168.244.153/ma.js';
			var s = document.getElementsByTagName('script')[0]; 
			s.parentNode.insertBefore(ma, s);
		})();
		</script>
	</head>
	<body>
		<h1 align="center">黑马程序员--云计算大数据</h1>
		<h1 align="center">page 2</h1>
	</body>
</html>
  • 数据搜集脚本
    • 将node-3中/usr/local/nginx/html 中之前的ma.js删除 , 将新的ma.js传输进来即可
(function () {
    var params = {};
    //Document对象数据
    if(document) {
        params.domain = document.domain || ''; 
        params.url = document.URL || ''; 
        params.title = document.title || ''; 
        params.referrer = document.referrer || ''; 
    }   
    //Window对象数据
    if(window && window.screen) {
        params.sh = window.screen.height || 0;
        params.sw = window.screen.width || 0;
        params.cd = window.screen.colorDepth || 0;
    }   
    //navigator对象数据
    if(navigator) {
        params.lang = navigator.language || ''; 
    }   
    //解析_maq配置
    if(_maq) {
        for(var i in _maq) {
            switch(_maq[i][0]) {
                case '_setAccount':
                    params.account = _maq[i][1];
                    break;
				case '_a_value':
                    params.avalue = _maq[i][1];
                    break;
				case 'type0':
                    params.type0 = _maq[i][1];
                    break;
				case 'type1':
                    params.type1 = _maq[i][1];
                    break;
				case 'type2':
                    params.type2 = _maq[i][1];
                    break;
                default:
                    break;
            }   
        }   
    }   
    //拼接参数串
    var args = ''; 
    for(var i in params) {
        if(args != '') {
            args += '&';
        }   
        args += i + '=' + encodeURIComponent(params[i]);
    }   
 
    //通过Image对象请求后端脚本
    var img = new Image(1, 1); 
    img.src = 'http://192.168.244.153/log.gif?' + args;
})();
  • 后端脚本
    • 将node-3/usr/local/nginx/conf中之前的nginx.conf删除 , 将新的nginx.conf传输进去
    • 对nginx进行重启即可 , 同样是先回到nginx目录下 , sbin/nginx -s reload
worker_processes  2;

events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

	log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
  	
    log_format user_log_format "$msec||$remote_addr||$status||$body_bytes_sent||$u_domain||$u_url||$u_title||$u_referrer||$u_sh||$u_sw||$u_cd||$u_lang||$http_user_agent||$u_account||$u_avalue||$u_type0||$u_type1||$u_type2";
    
    sendfile        on;

    keepalive_timeout  65;

    server {
        listen       80;
        server_name  localhost;
		location /log.gif {
			#伪装成gif文件
			default_type image/gif;    
			#nginx本身记录的access_log,日志格式为main
			access_log  logs/access.log  main;
		
			access_by_lua "
				-- 用户跟踪cookie名为__utrace
				local uid = ngx.var.cookie___utrace        
				if not uid then
					-- 如果没有则生成一个跟踪cookie,算法为md5(时间戳+IP+客户端信息)
					uid = ngx.md5(ngx.now() .. ngx.var.remote_addr .. ngx.var.http_user_agent)
				end 
				ngx.header['Set-Cookie'] = {'__utrace=' .. uid .. '; path=/'}
				if ngx.var.arg_domain then
				-- 通过subrequest到/i-log记录日志,将参数和用户跟踪cookie带过去
					ngx.location.capture('/i-log?' .. ngx.var.args .. '&utrace=' .. uid)
				end 
			";  
		
			#此请求不缓存
			add_header Expires "Fri, 01 Jan 1980 00:00:00 GMT";
			add_header Pragma "no-cache";
			add_header Cache-Control "no-cache, max-age=0, must-revalidate";
		
			#返回一个1×1的空gif图片
			empty_gif;
		}   
	
		location /i-log {
			#内部location,不允许外部直接访问
			internal;
		
			#设置变量,注意需要unescape
			set_unescape_uri $u_domain $arg_domain;
			set_unescape_uri $u_url $arg_url;
			set_unescape_uri $u_title $arg_title;
			set_unescape_uri $u_referrer $arg_referrer;
			set_unescape_uri $u_sh $arg_sh;
			set_unescape_uri $u_sw $arg_sw;
			set_unescape_uri $u_cd $arg_cd;
			set_unescape_uri $u_lang $arg_lang;
			set_unescape_uri $u_account $arg_account;
			set_unescape_uri $u_avalue $arg_avalue;
			set_unescape_uri $u_type0 $arg_type0;
			set_unescape_uri $u_type1 $arg_type1;
			set_unescape_uri $u_type2 $arg_type2;
		
			#打开subrequest(子请求)日志
			log_subrequest on;
			#自定义采集的日志,记录数据到user_defined.log
			access_log logs/user_defined.log user_log_format;
		
			#输出空字符串
			echo '';
		}	
	
    }
}

测试如下 : 每次点击之后生成两个日志 , 一个是点击的 , 一个是点击后网页的

1542023777.191||192.168.244.130||200||0||192.168.244.151||http://192.168.244.151/index2.html||welcom to itheima||||768||1366||24||zh-CN||Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0||AllenWoon||\xE8\xBF\x99\xE6\x98\xAF\xE7\x82\xB9\xE5\x87\xBB1||click||index||page1
1542023777.260||192.168.244.130||200||0||192.168.244.151||http://192.168.244.151/page1.html||page1||http://192.168.244.151/index2.html||768||1366||24||zh-CN||Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0||AllenWoon||||||||
1542023784.207||192.168.244.130||200||0||192.168.244.151||http://192.168.244.151/index2.html||welcom to itheima||||768||1366||24||zh-CN||Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0||AllenWoon||\xE8\xBF\x99\xE6\x98\xAF\xE7\x82\xB9\xE5\x87\xBB2||click||index||page2
1542023784.267||192.168.244.130||200||0||192.168.244.151||http://192.168.244.151/page2.html||page2||http://192.168.244.151/index2.html||768||1366||24||zh-CN||Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0||AllenWoon||||||||

扩展

  • linux上C语言软件安装步骤
    • ./configure 检查编译环境
    • make 编译
    • make install 编译后安装 --prefix

tips: 一键启动nginx脚本编写

vi startNg.sh==>

#!/bin/bash
/usr/local/nginx/sbin/nginx -c conf/nginx.conf

授予权限chmod u+x startNg.sh

tips : 一键关闭nginx脚本编写

#!/bin/bash
/usr/local/nginx/sbin/nginx -s stop

授予权限chmod u+x stopNg.sh

查看是否开启ps -ef | grep nginx

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
<!doctype html> <html> <head> <meta charset="utf-8"> <link href="css/index.css" type="text/css" rel="stylesheet"> </head> <body id="top"> <div class="jdm-toolbar-wrap J-wrap"> <div class="jdm-toolbar J-toolbar"> <div class="jdm-toolbar-panels J-panel"> </div> <div class="jdm-toolbar-tabs J-tab"> <div data-type="bar" class="J-trigger jdm-toolbar-tab jdm-tbar-tab-cart"> <i class="tab-ico"></i> <em class="tab-text">购物车 </em> </div> <div data-type="bar" clstag="h|keycount|cebianlan_h_follow|btn" class="J-trigger jdm-toolbar-tab jdm-tbar-tab-follow" data-name="follow" data-login="true"> <i class="tab-ico"></i> <em class="tab-text"> 我的关注 </em> </div> <div data-type="bar" clstag="h|keycount|cebianlan_h_history|btn" class="J-trigger jdm-toolbar-tab jdm-tbar-tab-history" data-name="history"> <i class="tab-ico"></i> <em class="tab-text"> 我的足迹 </em> </div> <div class="J-trigger jdm-toolbar-tab jdm-tbar-tab-message" data-name="message"><a target="_blank" href="#"> <i class="tab-ico"></i> <em class="tab-text"> 我的消息 </em></a> </div> <div data-type="bar" clstag="h|keycount|cebianlan_h_jimi|btn" class="J-trigger jdm-toolbar-tab jdm-tbar-tab-jimi" data-name="jimi" data-login="true" data-iframe="//jimi.jd.com/index.action?source=jdhome"> <i class="tab-ico"></i> <em class="tab-text"> 咨询JIMI </em> </div> </div> <div class="jdm-toolbar-footer"> <div data-type="link" id="#top" class="J-trigger jdm-toolbar-tab jdm-tbar-tab-top"> <a href="#" clstag="h|keycount|cebianlan_h|top"> <i class="tab-ico"></i> <em class="tab-text">顶部</em> </a> </div> <div data-type="link" class="J-trigger jdm-toolbar-tab jdm-tbar-tab-feedback"> <a href="http://surveys.jd.com/index.php?r=survey/index/sid/889711/newtest/Y/lang/zh-Hans" target="_blank" clstag="h|keycount|cebianlan_h|feedback"> <i class="tab-ico"></i> <em class="tab-text">反馈</em> </a> </div> <div data-type="link" class="J-trigger jdm-toolbar-tab jdm-tbar-tab-survey"> <a href="http://surveys.jd.com/index.php?r=survey/index/sid/527411/lang/zh-Hans" target="_blank" clstag="h|keycount|cebianlan_h|survey"> <em class="tab-text">有奖调查</em> </a> </div> </div> <div class="jdm-toolbar-mini"> </div> </div> <div id="J-toolbar-load-hook" clstag="h|keycount|cebianlan_h|load"></div> </div> <!-----------------------------------------顶部--------------> <header id="header"> <div class="header-box"> <ul class="header-left"> <li class="bj"> 送至:北京 <i class="ci-leftll"> <s class="jt">◇</s> </i> <div class="bj-1"> <a href="">北京</a><a href="">上海</a><a href="">天津</a><a href="">重庆</a><a href="">河北</a><a href="">山西</a><a href="">河南</a><a href="">辽宁</a><a href="">吉林</a><a href="">黑龙江</a><a href="">浙江</a><a href="">江苏</a><a href="">山东</a><a href="">安徽</a><a href="">内蒙古</a><a href="">湖北</a><a href="">湖南</a><a href="">广东</a><a href="">广西</a><a href="">江西</a><a href="">四川</a><a href="">海南</a><a href="">贵州</a><a href="">云南</a><a href="">西藏</a><a href="">陕西</a><a href="">甘肃</a><a href="">青海</a><a href="">宁夏</a><a href="">新疆</a><a href="">台湾</a><a href="">香港</a><a href="">澳门</a><a href="">海外</a><a href="">钓鱼岛</a> </div> </li> </ul> <ul class="header-right"> <li class="denglu"><a href="#">您好,请登录</a> <a href="#" class="red">免费注册</a></li> <li class="shu"></li> <li class="denglu"><a href="#">我的订单</a></li> <li class="shu"></li> <li class="my bj"> <a href="#">我的京东</a> <i class="ci-right "> <s class="jt">◇</s> </i> <div class="my1"> <div class="my2"> <img src="./images/no-img_mid_.jpg"> <div class="my3"> <h3 class="neirong2"><a href="">您好请登录</a></h3> <p class="neirong2"><a href="">优惠卷 丨 消息</a></p> </div> </div> <ul class="neirong2"> <li><a href="">带处理订单</a></li> <li><a href="">京我的订单</a></li> <li><a href="">京咨询回复</a></li> <li><a href="">京我的京豆</a></li> <li><a href="">京降价商品</a></li> <li><a href="">京我的理财</a></li> <li><a href="">京返修退换货</a></li> <li><a href="">京东白条</a></li> </ul> </div> </li> <li class="shu"></li> <li class="denglu"><a href="#">京东会员</a></li> <li class="shu"></li> <li class="denglu"><a href="#">企业采购</a></li> <li class="shu"></li> <li class="shouji bj"> <a href="#">手机京东</a> <i class="ci-right "> <s class="jt">◇</s> </i> <div class="shouji1"> <img src="./images/11.jpg"class="shouji4"> <div class="shouji2"> <p>京东客户端</p> <p class="red">首次下单满79元,送79元</p> <img src="./images/333.jpg" class="shouji3"> <img src="./images/333.jpg" class="shouji3"> <img src="./images/333.jpg" class="shouji3"> </div> <div class="yi"> <img src="./images/222.jpg"class="shouji4"> <div class="er"> <p>京东钱包客户端</p> <p class="red">一分钱抢超值豪礼</p> <img src="./images/333.jpg" class="shouji3"> <img src="./images/333.jpg" class="shouji3"> <img src="./images/333.jpg" class="shouji3"> </div> </div> </div> </li> <li class="shu"></li> <li class="guanzhu bj"> <a href="#">关注京东</a> <i class="ci-right "> <s class="jt">◇</s> </i> <div class="guanzhu1"><img src="./images/54c84f72Ncc1a02a2.jpg"></div> </li> <li class="shu"></li> <li class="kehu bj"> <a href="#">客户服务</a> <i class="ci-right "> <s class="jt">◇</s> </i> <div class="kehu1"> <h3 class="neirong2">客户</h3> <ul class="kehu2"> <li><a href="">帮助中心</a></li> <li><a href="">售后服务</a></li> <li><a href="">在线客服</a></li> <li><a href="">帮助中心</a></li> <li><a href="">客服邮箱</a></li> </ul> <div> <ul class="kehu3"> <h3 class="neirong2 ll">客户</h3> <li><a href="">京东商学院</a></li> </ul> </div> </div> </li> <li class="shu"></li> <li class="daohang"> <a href="#">网站导航</a> <i class="ci-right "> <s class="jt">◇</s> </i> <div class="aa"> <div class="neirong"> <h4 class="neirong2">特色主题</h4> <ul> <li><a href="">品牌街</a></li> <li><a href="">今日抄底</a></li> <li><a href="">好东西</a></li> <li><a href="">京东预售</a></li> </ul> <ul> <li><a href="">尖er货</a></li> <li><a href="">京东首发</a></li> <li><a href="">今日团购</a></li> <li><a href="">优惠券</a></li> </ul> <ul> <li><a href="">闪购</a></li> <li><a href="">京东会员</a></li> <li><a href="">京东京选</a></li> <li><a href="">定期送</a></li> </ul> <ul> <li><a href="">装机大师</a></li> <li><a href="">新奇特</a></li> <li><a href="">京东试用</a></li> </ul> </div> <div class="neirong"> <h4 class="neirong2">行业频道</h4> <ul> <li><a href="">品牌街</a></li> <li><a href="">今日抄底</a></li> <li><a href="">好东西</a></li> </ul> <ul> <li><a href="">尖er货</a></li> <li><a href="">京东首发</a></li> <li><a href="">今日团购</a></li> </ul> <ul> <li><a href="">闪购</a></li> <li><a href="">京东会员</a></li> <li><a href="">京东京选</a></li> </ul> <ul> <li><a href="">装机大师</a></li> <li><a href="">新奇特</a></li> <li><a href="">京东试用</a></li> </ul> <ul> <li><a href="">智能馆</a></li> <li><a href="">玩bigger</a></li> <li><a href="">大牌免息</a></li> </ul> </div> <div class="neirong"> <h4 class="neirong2">生活服务</h4> <ul> <li><a href="">品牌街</a></li> <li><a href="">今日抄底</a></li> <li><a href="">好东西</a></li> </ul> <ul> <li><a href="">尖er货</a></li> <li><a href="">京东首发</a></li> <li><a href="">今日团购</a></li> </ul> <ul> <li><a href="">闪购</a></li> <li><a href="">京东会员</a></li> <li><a href="">京东京选</a></li> </ul> <ul> <li><a href="">装机大师</a></li> <li><a href="">新奇特</a></li> <li><a href="">京东试用</a></li> </ul> <ul> <li><a href="">智能馆</a></li> <li><a href="">玩bigger</a></li> <li><a href="">大牌免息</a></li> </ul> </div> <div class="neirong neirong3"> <h4 class="neirong2">更多精选</h4> <ul> <li><a href="">品牌街</a></li> <li><a href="">今日抄底</a></li> <li><a href="">好东西</a></li> </ul> <ul> <li><a href="">尖er货</a></li> <li><a href="">京东首发</a></li> <li><a href="">今日团购</a></li> </ul> <ul> <li><a href="">闪购</a></li> <li><a href="">京东会员</a></li> <li><a href="">京东京选</a></li> </ul> <ul> <li><a href="">装机大师</a></li> <li><a href="">新奇特</a></li> <li><a href="">京东试用</a></li> </ul> <ul> <li><a href="">智能馆</a></li> <li><a href="">玩bigger</a></li> <li><a href="">大牌免息</a></li> </ul> </div> </div> </li> </ul> </div> </header> <div id="top-banner"> <div class="top-ba"> <a href=""><img src="./images/js.jpg"></a> <div id="xx"><a href="">X</a></div> </div> </div> <div class="w"> <div class="logo"><a href=""><img src="./images/logo.png"></a></div> <div class="search"> <input type="text" value="家电一折抢" class="text" id="textt"> <button class="button">搜索</button> </div> <div class="right"> <i class="gw-left" -58px no-repeat;width:24px;height:24px;"></i> <i class="gw-right">></i> <i class="gw-count">0</i> <a href="#">我的购物车</a> <div class="dorpdown-layer"> <img src="./images/settleup-nogoods.png"> 购物车中还没有商品,赶紧选购吧! </div> </div> <div class="hotwords"> <a href="#" class="red">1元秒杀</a> <a href="#">低至1折</a> <a href="#">1元抢</a> <a href="#">时尚鞋靴</a> <a href="#">买一送二</a> <a href="#">乐视乐1</a> <a href="#">特步女鞋</a> <a href="#">威士忌</a> <a href="#">婴儿衣服</a> </div> </div> <div class="clear"></div> <!--轮播图上方导航栏 一栏--> <div id="navv"> <div class="nav-img" repeat-x"></div> <div class="nav-imgs" no-repeat center top"></div> </div> <div class="focus"> <div class="focus-a"> <div class="fouc-img1"><img src="./images/5689d4ebN19f155a6.jpg" class="nav-img2"></div> <div class="fouc-font"><a href="">全部商品分类</a> </div> </div> <div class="focus-b"> <ul> <li><a href="#">服装城</a></li> <li><a href="#">美妆馆</a></li> <li><a href="#">超市</a></li> <li><a href="#">全球购</a></li> <li><a href="#">闪购</a></li> <li><a href="#">团购</a></li> <li><a href="#">拍卖</a></li> <li><a href="#">金融</a></li> </ul> </div> <div class="focus-c"><a href=""><img src="./images/hhh.jpg"></a></div> <div class="focus-d"><a href=""><img src="./images/nianhuo.jpg"></a></div> <!--轮播图左边当行蓝--> <div class="bb"></div> <div class="dd-inner"> <div class="font-item"> <div class="item fore1"> <h3><a href="">家用电器</a></h3> <i>></i> </div> <div class="font-item1"> <div class="font-left"> <div class="one"><a href="">品牌日<i>></i></a></div> <div class="two"><a href="">家电城<i>></i></a></div> <div class="three"><a href="">智能生活馆<i>></i></a></div> <div class="four"><a href="">京东净化馆<i>></i></a></div> <div class="five"><a href="">京东帮服务店<i>></i></a></div> <div class="sex"><a href="">值得买精选<i>></i></a></div> </div> <div class="font-lefty"> <dl class="fore1"> <dt><a href="">大家电<i>></i></a></dt> <dd> <a href="">平板电视</a><a href="">空调</a><a href="">冰箱</a><a href="">洗衣机</a><a href="">家庭影院</a><a href="">DVD</a><a href="">迷你音响</a> <a href="">烟机/灶具</a><a href="">热水器</a><a href="">消毒具/洗碗柜</a><a href="">冰柜/冰吧</a><a href="">酒柜</a><a href="">家电配件</a> </dd> </dl> <dl class="fore1"> <dt><a href="">生活电器<i>></i></a></dt> <dd> <a href="">取暖电器</a><a href="">净化器</a><a href="">扫地机器人</a><a href="">吸尘器</a><a href="">加湿器</a><a href="">挂烫机/熨斗</a><a href="">电风扇</a> <a href="">冷风扇</a><a href="">插座</a><a href="">电话机</a><a href="">净水器</a><a href="">饮水机</a> <a href="">除湿机</a><a href="">干衣机清洁机</a><a href="">收录/音机</a><a href="">生活电器配件</a><a href="">其它生活电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">厨房电器<i>></i></a></dt> <dd> <a href="">电压力锅</a><a href="">豆浆机</a><a href="">面包机</a><a href="">咖啡机</a><a href="">微波炉料理/榨汁机</a><a href="">电烤箱</a><a href="">电磁炉</a> <a href="">电饼铛/烧烤盘</a><a href="">煮蛋器酸奶机</a><a href="">电水壶/热水瓶</a><a href="">电炖锅</a><a href="">多用途锅</a><a href="">果蔬解毒机</a><a href="">养生壶/煎药壶</a><a href="">其它厨房电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">个护健康<i>></i></a></dt> <dd> <a href="">剃须刀剃/脱毛器</a><a href="">口腔护理</a><a href="">电吹风</a><a href="">美容器</a><a href="">理发器卷/直发器</a><a href="">按摩椅</a><a href="">按摩器</a> <a href="">足浴盆</a><a href="">血压计</a><a href="">健康秤/厨房秤</a><a href="">血糖仪</a><a href="">体温计</a><a href="">计步器/脂肪检测仪</a><a href="">脂肪检测仪其它健康电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">五金家装<i>></i></a></dt> <dd> <a href="">平板电视</a><a href="">空调</a><a href="">冰箱</a><a href="">洗衣机</a><a href="">家庭影院</a><a href="">DVD</a><a href="">迷你音响</a><a href="">烟机/灶具</a> <a href="">热水器</a><a href="">消毒具/洗碗柜</a><a href="">冰柜/冰吧</a><a href="">酒柜</a><a href="">家电配件</a> </dd> </dl> </div> <div class="font-right"> <div> <a href="#"> <img src="./images/562f4971Na5379aba.jpg"> </a> <a href="#"> <img src="./images/54d9eef9N5bb8d27f.jpg"> </a> <a href="#"> <img src="./images/54d9ef02N99d26435.jpg"> </a> <a href="#"> <img src="./images/54d9ef10Nd206a236.jpg"> </a> <a href="#"> <img src="./images/54d9ef28N00328d44.jpg"> </a> <a href="#"> <img src="./images/54d9ef34N7cc61f4c.jpg"> </a> <a href="#"> <img src="./images/54d9ef3eN99aef1f0.jpg"> </a> <a href="#"> <img src="./images/54d9ef4cN4fe57f9b.jpg"> </a> </div> </div> <div class="font-righty"> <a href="#"> <img src="./images/5673a854N10856704.jpg"> </a> <a href="#"> <img src="./images/56a0376aN7de1bdcf.jpg"> </a> </div> </div> </div> <div class="fore-2"> <div class="item fore2"> <h3> <a href="">手机、</a><a href="">数码、</a><a href="">京东通讯</a> </h3> <i>></i> </div> <div class="font-item1"> <div class="font-left"> <div class="one"><a href="">手机频道<i>></i></a></div> <div class="two"><a href="">网上营业厅<i>></i></a></div> <div class="three"><a href="">配件城<i>></i></a></div> <div class="four"><a href="">影响Club<i>></i></a></div> <div class="five"><a href="">手机社区<i>></i></a></div> <div class="sex"><a href="">以旧换新<i>></i></a></div> </div> <div class="font-lefty"> <dl class="fore1"> <dt><a href="">手机通讯<i>></i></a></dt> <dd> <a href="">手机</a><a href="">对讲机</a><a href="">以旧换新</a><a href="">手机维修</a> </dd> </dl> <dl class="fore1"> <dt><a href="">京东通讯<i>></i></a></dt> <dd> <a href="">选号中心</a><a href="">自助服务</a> </dd> </dl> <dl class="fore1"> <dt><a href="">运营商<i>></i></a></dt> <dd> <a href="">合约机</a><a href="">办套餐</a><a href="">选号码</a><a href="">装宽带</a><a href="">中国移动</a><a href="">中国联通</a><a href="">中国电信</a> </dd> </dl> <dl class="fore1"> <dt><a href="">手机配件<i>></i></a></dt> <dd> <a href="">电池/移动电源</a><a href="">蓝牙耳机</a><a href="">充电器/数据线</a><a href="">手机耳机</a><a href="">手机支架</a><a href="">贴膜</a><a href="">存储卡</a> <a href="">保护套</a><a href="">车载iPhone配件</a><a href="">创意配件</a><a href="">便携/无线音箱</a><a href="">手机饰品</a><a href="">拍照配件</a> </dd> </dl> <dl class="fore1"> <dt><a href="">摄影摄像<i>></i></a></dt> <dd> <a href="">数码相机</a><a href="">单电/微单相机</a><a href="">单反相机</a><a href="">拍立得</a><a href="">运动相机</a><a href="">摄像机</a> <a href="">镜头户外器材</a><a href="">影棚器材</a><a href="">冲印服务</a><a href="">数码相框</a> </dd> </dl> </div> <div class="font-right"> <div> <a href="#"><img src="./images/55f7e052N91fe7821.gif"></a><a href="#"><img src="./images/566b9856N9be09c56.png"></a><a href="#"><img src="./images/56302f25N84147dce.jpg"></a><a href="#"><img src="./images/54dac932Nb84e058e.jpg"></a> <a href="#"><img src="./images/54d9d1e9Nfb4684e5.jpg"></a><a href="#"><img src="./images/566e5771N0e6950ee.jpg"></a><a href="#"><img src="./images/55b1d930Nf0bfccbb.jpg"></a><a href="#"><img src="./images/554a11bbN7bb7f655.jpg"></a> </div> </div> <div class="font-righty"> <a href="#"><img src="./images/5693228dN146c521c.jpg"></a><a href="#"><img src="./images/56985dc0Nda320512.jpg"></a> </div> </div> </div> <div class="fore-3"> <div class="item fore3"> <h3> <a href="">电脑、</a> <a href="">办公</a> </h3> <i>></i> </div> <div class="font-item1"> <div class="font-left"> <div class="one"><a href="">品牌日<i>></i></a></div> <div class="two"><a href="">家电城<i>></i></a></div> <div class="three"><a href="">智能生活馆<i>></i></a></div> <div class="four"><a href="">京东净化馆<i>></i></a></div> <div class="five"><a href="">京东帮服务店<i>></i></a></div> <div class="sex"><a href="">值得买精选<i>></i></a></div> </div> <div class="font-lefty"> <dl class="fore1"> <dt><a href="">大家电<i>></i></a></dt> <dd> <a href="#">平板电视</a> <a href="#">空调</a> <a href="#">冰箱</a> <a href="#">洗衣机</a> <a href="#">家庭影院</a> <a href="#">DVD</a> <a href="#">迷你音响</a> <a href="#">烟机/灶具</a> <a href="#">热水器</a> <a href="#">消毒具/洗碗柜</a> <a href="#">冰柜/冰吧</a> <a href="#">酒柜</a> <a href="#">家电配件</a> </dd> </dl> <dl class="fore1"> <dt><a href="">生活电器<i>></i></a></dt> <dd> <a href="#">取暖电器</a> <a href="#">净化器</a> <a href="#">扫地机器人</a> <a href="#">吸尘器</a> <a href="#">加湿器</a> <a href="#">挂烫机/熨斗</a> <a href="#">电风扇</a> <a href="#">冷风扇</a> <a href="#">插座</a> <a href="#">电话机</a> <a href="#">净水器</a> <a href="#">饮水机</a> <a href="#">除湿机</a><a href="">干衣机清洁机</a><a href="">收录/音机</a><a href="">生活电器配件</a><a href="">其它生活电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="###">厨房电器<i>></i></a></dt> <dd> <a href="#">电压力锅</a> <a href="#">豆浆机</a> <a href="#">面包机</a> <a href="#">咖啡机</a> <a href="#">微波炉料理/榨汁机</a> <a href="#">电烤箱</a> <a href="#">电磁炉</a> <a href="#">电饼铛/烧烤盘</a> <a href="#">煮蛋器酸奶机</a> <a href="#">电水壶/热水瓶</a> <a href="#">电炖锅</a> <a href="#">多用途锅</a> <a href="##">果蔬解毒机</a><a href="">养生壶/煎药壶</a><a href="#">其它厨房电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="#">个护健康<i>></i></a></dt> <dd> <a href="#">剃须刀剃/脱毛器</a> <a href="#">口腔护理</a> <a href="#">电吹风</a> <a href="#">美容器</a> <a href="#">理发器卷/直发器</a> <a href="#">按摩椅</a> <a href="#">按摩器</a> <a href="#">足浴盆</a> <a href="#">血压计</a> <a href="#">健康秤/厨房秤</a> <a href="#">血糖仪</a> <a href="#">体温计</a> <a href="#">计步器/脂肪检测仪</a><a href="">脂肪检测仪其它健康电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">五金家装<i>></i></a></dt> <dd> <a href="#">平板电视</a> <a href="#">空调</a> <a href="#">冰箱</a> <a href="#">洗衣机</a> <a href="#">家庭影院</a> <a href="#">DVD</a> <a href="#">迷你音响</a> <a href="#">烟机/灶具</a> <a href="#">热水器</a> <a href="#">消毒具/洗碗柜</a> <a href="#">冰柜/冰吧</a> <a href="#">酒柜</a> <a href="#">家电配件</a> </dd> </dl> </div> <div class="font-right"> <div> <a href="#"><img src="./images/562f4971Na5379aba.jpg"></a> <a href="#"><img src="./images/54d9eef9N5bb8d27f.jpg"></a> <a href="#"><img src="./images/54d9ef02N99d26435.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> </div> </div> <div class="font-righty"> <a href="#"><img src="./images/5673a854N10856704.jpg"></a> <a href="#"><img src="./images/56a0376aN7de1bdcf.jpg"></a> </div> </div> </div> <div class="fore-4"> <div class="item fore4"> <h3> <a href="##">家居、</a> <a href="##">家具、</a> <a href="##">家装、</a> <a href="##">厨具</a> </h3> <i>></i> </div> <div class="font-item1"> <div class="font-left"> <div class="one"><a href="">品牌日<i>></i></a></div> <div class="two"><a href="">家电城<i>></i></a></div> <div class="three"><a href="">智能生活馆<i>></i></a></div> <div class="four"><a href="">京东净化馆<i>></i></a></div> <div class="five"><a href="">京东帮服务店<i>></i></a></div> <div class="sex"><a href="">值得买精选<i>></i></a></div> </div> <div class="font-lefty"> <dl class="fore1"> <dt><a href="">大家电<i>></i></a></dt> <dd> <a href="#">平板电视</a> <a href="#">空调</a> <a href="#">冰箱</a> <a href="#">洗衣机</a> <a href="#">家庭影院</a> <a href="#">DVD</a> <a href="#">迷你音响</a> <a href="#">烟机/灶具</a> <a href="#">热水器</a> <a href="#">消毒具/洗碗柜</a> <a href="#">冰柜/冰吧</a> <a href="#">酒柜</a> <a href="#">家电配件</a> </dd> </dl> <dl class="fore1"> <dt><a href="#">生活电器<i>></i></a></dt> <dd> <a href="#">取暖电器</a> <a href="#">净化器</a> <a href="#">扫地机器人</a> <a href="#">吸尘器</a> <a href="#">加湿器</a> <a href="#">挂烫机/熨斗</a> <a href="#">电风扇</a> <a href="#">冷风扇</a> <a href="#">插座</a> <a href="#">电话机</a># <a href="#">净水器</a> <a href="#">饮水机</a> <a href="#">除湿机</a><a href="">干衣机清洁机</a><a href="">收录/音机</a><a href="">生活电器配件</a><a href="">其它生活电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">厨房电器<i>></i></a></dt> <dd> <a href="#">电压力锅</a> <a href="#">豆浆机</a> <a href="#">面包机</a> <a href="#">咖啡机</a> <a href="#">微波炉料理/榨汁机</a> <a href="#">电烤箱</a> <a href="#">电磁炉</a> <a href="#">电饼铛/烧烤盘</a> <a href="#">煮蛋器酸奶机</a> <a href="#">电水壶/热水瓶</a> <a href="#">电炖锅</a> <a href="#">多用途锅</a> <a href="#">果蔬解毒机</a><a href="">养生壶/煎药壶</a><a href="">其它厨房电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="##">个护健康<i>></i></a></dt> <dd> <a href="#">剃须刀剃/脱毛器</a> <a href="#">口腔护理</a> <a href="#">电吹风</a> <a href="#">美容器</a> <a href="#">理发器卷/直发器</a> <a href="#">按摩椅</a> <a href="#">按摩器</a> <a href="#">足浴盆</a> <a href="#">血压计</a> <a href="#">健康秤/厨房秤</a> <a href="#">血糖仪</a> <a href="#">体温计</a> <a href="#">计步器/脂肪检测仪</a><a href="">脂肪检测仪其它健康电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="#">五金家装<i>></i></a></dt> <dd> <a href="#">平板电视</a> <a href="#">空调</a> <a href="#">冰箱</a> <a href="#">洗衣机</a> <a href="#">家庭影院</a> <a href="#">DVD</a> <a href="#">迷你音响</a> <a href="#">烟机/灶具</a> <a href="#">热水器</a> <a href="#">消毒具/洗碗柜</a> <a href="#">冰柜/冰吧</a> <a href="#">酒柜</a> <a href="#">家电配件</a> </dd> </dl> </div> <div class="font-right"> <div> <a href="#"><img src="./images/562f4971Na5379aba.jpg"></a> <a href="#"><img src="./images/54d9eef9N5bb8d27f.jpg"></a> <a href="#"><img src="./images/54d9ef02N99d26435.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> </div> </div> <div class="font-righty"> <a href="#"><img src="./images/5673a854N10856704.jpg"></a> <a href="#"><img src="./images/56a0376aN7de1bdcf.jpg"></a> </div> </div> </div> <div class="fore-5"> <div class="item fore5"> <h3> <a href="##">男装、</a> <a href="##">女装、</a> <a href="##">内衣、</a> <a href="##">珠宝</a> </h3> <i>></i> </div> <div class="font-item1"> <div class="font-left"> <div class="one"><a href="">品牌日<i>></i></a></div> <div class="two"><a href="">家电城<i>></i></a></div> <div class="three"><a href="">智能生活馆<i>></i></a></div> <div class="four"><a href="">京东净化馆<i>></i></a></div> <div class="five"><a href="">京东帮服务店<i>></i></a></div> <div class="sex"><a href="">值得买精选<i>></i></a></div> </div> <div class="font-lefty"> <dl class="fore1"> <dt><a href="">大家电<i>></i></a></dt> <dd> <a href="#">平板电视</a> <a href="#">空调</a> <a href="#">冰箱</a> <a href="#">洗衣机</a> <a href="#">家庭影院</a> <a href="#">DVD</a> <a href="#">迷你音响</a> <a href="#">烟机/灶具</a> <a href="#">热水器</a> <a href="#">消毒具/洗碗柜</a> <a href="#">冰柜/冰吧</a> <a href="#">酒柜</a> <a href="#">家电配件</a> </dd> </dl> <dl class="fore1"> <dt><a href="##">生活电器<i>></i></a></dt> <dd> <a href="#">取暖电器</a> <a href="#">净化器</a> <a href="#">扫地机器人</a> <a href="#">吸尘器</a> <a href="#">加湿器</a> <a href="#">挂烫机/熨斗</a> <a href="#">电风扇</a> <a href="#">冷风扇</a> <a href="#">插座</a> <a href="#">电话机</a> <a href="#">净水器</a> <a href="#">饮水机</a> <a href="#">除湿机</a><a href="">干衣机清洁机</a><a href="">收录/音机</a><a href="">生活电器配件</a><a href="">其它生活电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="##">厨房电器<i>></i></a></dt> <dd> <a href="#">电压力锅</a> <a href="#">豆浆机</a> <a href="#">面包机</a> <a href="#">咖啡机</a> <a href="#">微波炉料理/榨汁机</a> <a href="#">电烤箱</a># <a href="#">电磁炉</a> <a href="#">电饼铛/烧烤盘</a> <a href="#">煮蛋器酸奶机</a> <a href="#">电水壶/热水瓶</a> <a href="#">电炖锅</a> <a href="#">多用途锅</a> <a href="#">果蔬解毒机</a><a href="">养生壶/煎药壶</a><a href="">其它厨房电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">个护健康<i>></i></a></dt> <dd> <a href="#">剃须刀剃/脱毛器</a> <a href="#">口腔护理</a> <a href="#">电吹风</a> <a href="#">美容器</a> <a href="#">理发器卷/直发器</a> <a href="#">按摩椅</a> <a href="#">按摩器</a> <a href="#">足浴盆</a> <a href="#">血压计</a> <a href="#">健康秤/厨房秤</a> <a href="#">血糖仪</a> <a href="#">体温计</a> <a href="#">计步器/脂肪检测仪</a><a href="">脂肪检测仪其它健康电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="#">五金家装<i>></i></a></dt> <dd> <a href="#">平板电视</a> <a href="#">空调</a> <a href="#">冰箱</a> <a href="#">洗衣机</a> <a href="#">家庭影院</a> <a href="#">DVD</a> <a href="#">迷你音响</a> <a href="#">烟机/灶具</a> <a href="#">热水器</a> <a href="#">消毒具/洗碗柜</a> <a href="#">冰柜/冰吧</a> <a href="#">酒柜</a> <a href="#">家电配件</a> </dd> </dl> </div> <div class="font-right"> <div> <a href="#"><img src="./images/562f4971Na5379aba.jpg"></a> <a href="#"><img src="./images/54d9eef9N5bb8d27f.jpg"></a> <a href="#"><img src="./images/54d9ef02N99d26435.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> </div> </div> <div class="font-righty"> <a href="#"><img src="./images/5673a854N10856704.jpg"></a> <a href="#"><img src="./images/56a0376aN7de1bdcf.jpg"></a> </div> </div> </div> <div class="fore-6"> <div class="item fore6"> <h3> <a href="">个人化妆、</a> <a href="">清洁用品</a> </h3> <i>></i> </div> <div class="font-item1"> <div class="font-left"> <div class="one"><a href="">品牌日<i>></i></a></div> <div class="two"><a href="">家电城<i>></i></a></div> <div class="three"><a href="">智能生活馆<i>></i></a></div> <div class="four"><a href="">京东净化馆<i>></i></a></div> <div class="five"><a href="">京东帮服务店<i>></i></a></div> <div class="sex"><a href="">值得买精选<i>></i></a></div> </div> <div class="font-lefty"> <dl class="fore1"> <dt><a href="">大家电<i>></i></a></dt> <dd> <a href="">平板电视</a> <a href="">空调</a> <a href="">冰箱</a> <a href="">洗衣机</a> <a href="">家庭影院</a> <a href="">DVD</a> <a href="">迷你音响</a> <a href="">烟机/灶具</a> <a href="">热水器</a> <a href="">消毒具/洗碗柜</a> <a href="">冰柜/冰吧</a> <a href="">酒柜</a> <a href="">家电配件</a> </dd> </dl> <dl class="fore1"> <dt><a href="">生活电器<i>></i></a></dt> <dd> <a href="">取暖电器</a> <a href="">净化器</a> <a href="">扫地机器人</a> <a href="">吸尘器</a> <a href="">加湿器</a> <a href="">挂烫机/熨斗</a> <a href="">电风扇</a> <a href="">冷风扇</a> <a href="">插座</a> <a href="">电话机</a> <a href="">净水器</a> <a href="">饮水机</a> <a href="">除湿机</a><a href="">干衣机清洁机</a><a href="">收录/音机</a><a href="">生活电器配件</a><a href="">其它生活电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">厨房电器<i>></i></a></dt> <dd> <a href="">电压力锅</a> <a href="">豆浆机</a> <a href="">面包机</a> <a href="">咖啡机</a> <a href="">微波炉料理/榨汁机</a> <a href="">电烤箱</a> <a href="">电磁炉</a> <a href="">电饼铛/烧烤盘</a> <a href="">煮蛋器酸奶机</a> <a href="">电水壶/热水瓶</a> <a href="">电炖锅</a> <a href="">多用途锅</a> <a href="">果蔬解毒机</a><a href="">养生壶/煎药壶</a><a href="">其它厨房电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">个护健康<i>></i></a></dt> <dd> <a href="">剃须刀剃/脱毛器</a> <a href="">口腔护理</a> <a href="">电吹风</a> <a href="">美容器</a> <a href="">理发器卷/直发器</a> <a href="">按摩椅</a> <a href="">按摩器</a> <a href="">足浴盆</a> <a href="">血压计</a> <a href="">健康秤/厨房秤</a> <a href="">血糖仪</a> <a href="">体温计</a> <a href="">计步器/脂肪检测仪</a><a href="">脂肪检测仪其它健康电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">五金家装<i>></i></a></dt> <dd> <a href="">平板电视</a> <a href="">空调</a> <a href="">冰箱</a> <a href="">洗衣机</a> <a href="">家庭影院</a> <a href="">DVD</a> <a href="">迷你音响</a> <a href="">烟机/灶具</a> <a href="">热水器</a> <a href="">消毒具/洗碗柜</a> <a href="">冰柜/冰吧</a> <a href="">酒柜</a> <a href="">家电配件</a> </dd> </dl> </div> <div class="font-right"> <div> <a href="#"><img src="./images/562f4971Na5379aba.jpg"></a> <a href="#"><img src="./images/54d9eef9N5bb8d27f.jpg"></a> <a href="#"><img src="./images/54d9ef02N99d26435.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> </div> </div> <div class="font-righty"> <a href="#"><img src="./images/5673a854N10856704.jpg"></a> <a href="#"><img src="./images/56a0376aN7de1bdcf.jpg"></a> </div> </div> </div> <div class="fore-7"> <div class="item fore7"> <h3> <a href="">鞋靴、</a> <a href="">箱包、</a> <a href="">钟表、</a> <a href="">奢饰品</a> </h3> <i>></i> </div> <div class="font-item1"> <div class="font-left"> <div class="one"><a href="">品牌日<i>></i></a></div> <div class="two"><a href="">家电城<i>></i></a></div> <div class="three"><a href="">智能生活馆<i>></i></a></div> <div class="four"><a href="">京东净化馆<i>></i></a></div> <div class="five"><a href="">京东帮服务店<i>></i></a></div> <div class="sex"><a href="">值得买精选<i>></i></a></div> </div> <div class="font-lefty"> <dl class="fore1"> <dt><a href="">大家电<i>></i></a></dt> <dd> <a href="">平板电视</a> <a href="">空调</a> <a href="">冰箱</a> <a href="">洗衣机</a> <a href="">家庭影院</a> <a href="">DVD</a> <a href="">迷你音响</a> <a href="">烟机/灶具</a> <a href="">热水器</a> <a href="">消毒具/洗碗柜</a> <a href="">冰柜/冰吧</a> <a href="">酒柜</a> <a href="">家电配件</a> </dd> </dl> <dl class="fore1"> <dt><a href="">生活电器<i>></i></a></dt> <dd> <a href="">取暖电器</a> <a href="">净化器</a> <a href="">扫地机器人</a> <a href="">吸尘器</a> <a href="">加湿器</a> <a href="">挂烫机/熨斗</a> <a href="">电风扇</a> <a href="">冷风扇</a> <a href="">插座</a> <a href="">电话机</a> <a href="">净水器</a> <a href="">饮水机</a> <a href="">除湿机</a><a href="">干衣机清洁机</a><a href="">收录/音机</a><a href="">生活电器配件</a><a href="">其它生活电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">厨房电器<i>></i></a></dt> <dd> <a href="">电压力锅</a> <a href="">豆浆机</a> <a href="">面包机</a> <a href="">咖啡机</a> <a href="">微波炉料理/榨汁机</a> <a href="">电烤箱</a> <a href="">电磁炉</a> <a href="">电饼铛/烧烤盘</a> <a href="">煮蛋器酸奶机</a> <a href="">电水壶/热水瓶</a> <a href="">电炖锅</a> <a href="">多用途锅</a> <a href="">果蔬解毒机</a><a href="">养生壶/煎药壶</a><a href="">其它厨房电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">个护健康<i>></i></a></dt> <dd> <a href="">剃须刀剃/脱毛器</a> <a href="">口腔护理</a> <a href="">电吹风</a> <a href="">美容器</a> <a href="">理发器卷/直发器</a> <a href="">按摩椅</a> <a href="">按摩器</a> <a href="">足浴盆</a> <a href="">血压计</a> <a href="">健康秤/厨房秤</a> <a href="">血糖仪</a> <a href="">体温计</a> <a href="">计步器/脂肪检测仪</a><a href="">脂肪检测仪其它健康电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">五金家装<i>></i></a></dt> <dd> <a href="">平板电视</a> <a href="">空调</a> <a href="">冰箱</a> <a href="">洗衣机</a> <a href="">家庭影院</a> <a href="">DVD</a> <a href="">迷你音响</a> <a href="">烟机/灶具</a> <a href="">热水器</a> <a href="">消毒具/洗碗柜</a> <a href="">冰柜/冰吧</a> <a href="">酒柜</a> <a href="">家电配件</a> </dd> </dl> </div> <div class="font-right"> <div> <a href="#"><img src="./images/562f4971Na5379aba.jpg"></a> <a href="#"><img src="./images/54d9eef9N5bb8d27f.jpg"></a> <a href="#"><img src="./images/54d9ef02N99d26435.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> </div> </div> <div class="font-righty"> <a href="#"><img src="./images/5673a854N10856704.jpg"></a> <a href="#"><img src="./images/56a0376aN7de1bdcf.jpg"></a> </div> </div> </div> <div class="fore-8"> <div class="item fore8"> <h3><a href="">运动户外</a></h3> <i>></i> </div> <div class="font-item1"> <div class="font-left"> <div class="one"><a href="">品牌日<i>></i></a></div> <div class="two"><a href="">家电城<i>></i></a></div> <div class="three"><a href="">智能生活馆<i>></i></a></div> <div class="four"><a href="">京东净化馆<i>></i></a></div> <div class="five"><a href="">京东帮服务店<i>></i></a></div> <div class="sex"><a href="">值得买精选<i>></i></a></div> </div> <div class="font-lefty"> <dl class="fore1"> <dt><a href="">大家电<i>></i></a></dt> <dd> <a href="">平板电视</a> <a href="">空调</a> <a href="">冰箱</a> <a href="">洗衣机</a> <a href="">家庭影院</a> <a href="">DVD</a> <a href="">迷你音响</a> <a href="">烟机/灶具</a> <a href="">热水器</a> <a href="">消毒具/洗碗柜</a> <a href="">冰柜/冰吧</a> <a href="">酒柜</a> <a href="">家电配件</a> </dd> </dl> <dl class="fore1"> <dt><a href="">生活电器<i>></i></a></dt> <dd> <a href="">取暖电器</a> <a href="">净化器</a> <a href="">扫地机器人</a> <a href="">吸尘器</a> <a href="">加湿器</a> <a href="">挂烫机/熨斗</a> <a href="">电风扇</a> <a href="">冷风扇</a> <a href="">插座</a> <a href="">电话机</a> <a href="">净水器</a> <a href="">饮水机</a> <a href="">除湿机</a><a href="">干衣机清洁机</a><a href="">收录/音机</a><a href="">生活电器配件</a><a href="">其它生活电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">厨房电器<i>></i></a></dt> <dd> <a href="">电压力锅</a> <a href="">豆浆机</a> <a href="">面包机</a> <a href="">咖啡机</a> <a href="">微波炉料理/榨汁机</a> <a href="">电烤箱</a> <a href="">电磁炉</a> <a href="">电饼铛/烧烤盘</a> <a href="">煮蛋器酸奶机</a> <a href="">电水壶/热水瓶</a> <a href="">电炖锅</a> <a href="">多用途锅</a> <a href="">果蔬解毒机</a><a href="">养生壶/煎药壶</a><a href="">其它厨房电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">个护健康<i>></i></a></dt> <dd> <a href="">剃须刀剃/脱毛器</a> <a href="">口腔护理</a> <a href="">电吹风</a> <a href="">美容器</a> <a href="">理发器卷/直发器</a> <a href="">按摩椅</a> <a href="">按摩器</a> <a href="">足浴盆</a> <a href="">血压计</a> <a href="">健康秤/厨房秤</a> <a href="">血糖仪</a> <a href="">体温计</a> <a href="">计步器/脂肪检测仪</a><a href="">脂肪检测仪其它健康电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">五金家装<i>></i></a></dt> <dd> <a href="">平板电视</a> <a href="">空调</a> <a href="">冰箱</a> <a href="">洗衣机</a> <a href="">家庭影院</a> <a href="">DVD</a> <a href="">迷你音响</a> <a href="">烟机/灶具</a> <a href="">热水器</a> <a href="">消毒具/洗碗柜</a> <a href="">冰柜/冰吧</a> <a href="">酒柜</a> <a href="">家电配件</a> </dd> </dl> </div> <div class="font-right"> <div> <a href="#"><img src="./images/562f4971Na5379aba.jpg"></a> <a href="#"><img src="./images/54d9eef9N5bb8d27f.jpg"></a> <a href="#"><img src="./images/54d9ef02N99d26435.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> </div> </div> <div class="font-righty"> <a href="#"><img src="./images/5673a854N10856704.jpg"></a> <a href="#"><img src="./images/56a0376aN7de1bdcf.jpg"></a> </div> </div> </div> <div class="fore-9"> <div class="item fore9"> <h3> <a href="">汽车、</a> <a href="">汽车用品</a> </h3> <i>></i> </div> <div class="font-item1"> <div class="font-left"> <div class="one"><a href="">品牌日<i>></i></a></div> <div class="two"><a href="">家电城<i>></i></a></div> <div class="three"><a href="">智能生活馆<i>></i></a></div> <div class="four"><a href="">京东净化馆<i>></i></a></div> <div class="five"><a href="">京东帮服务店<i>></i></a></div> <div class="sex"><a href="">值得买精选<i>></i></a></div> </div> <div class="font-lefty"> <dl class="fore1"> <dt><a href="">大家电<i>></i></a></dt> <dd> <a href="">平板电视</a><a href="">空调</a><a href="">冰箱</a><a href="">洗衣机</a><a href="">家庭影院</a><a href="">DVD</a><a href="">烟机/灶具</a> <a href="">热水器</a><a href="">消毒具/洗碗柜</a><a href="">冰柜/冰吧</a><a href="">酒柜</a><a href="">家电配件</a> </dd> </dl> <dl class="fore1"> <dt><a href="">生活电器<i>></i></a></dt> <dd> <a href="">取暖电器</a><a href="">净化器</a><a href="">扫地机器人</a><a href="">吸尘器</a><a href="">加湿器</a><a href="">挂烫机/熨斗</a><a href="">电风扇</a> <a href="">冷风扇</a><a href="">插座</a><a href="">电话机</a><a href="">净水器</a><a href="">饮水机</a> <a href="">除湿机</a><a href="">干衣机清洁机</a><a href="">收录/音机</a><a href="">生活电器配件</a><a href="">其它生活电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">厨房电器<i>></i></a></dt> <dd> <a href="">电压力锅</a><a href="">豆浆机</a><a href="">面包机</a><a href="">咖啡机</a><a href="">微波炉料理/榨汁机</a><a href="">电烤箱</a><a href="">电磁炉</a> <a href="">电饼铛/烧烤盘</a><a href="">煮蛋器酸奶机</a><a href="">电水壶/热水瓶</a><a href="">电炖锅</a><a href="">多用途锅</a><a href="">果蔬解毒机</a><a href="">养生壶/煎药壶</a><a href="">其它厨房电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">个护健康<i>></i></a></dt> <dd> <a href="">剃须刀剃/脱毛器</a><a href="">口腔护理</a><a href="">电吹风</a><a href="">美容器</a><a href="">理发器卷/直发器</a><a href="">按摩椅</a><a href="">按摩器</a> <a href="">足浴盆</a><a href="">血压计</a><a href="">健康秤/厨房秤</a><a href="">血糖仪</a><a href="">体温计</a><a href="">计步器/脂肪检测仪</a><a href="">脂肪检测仪其它健康电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">五金家装<i>></i></a></dt> <dd> <a href="">平板电视</a><a href="">空调</a><a href="">冰箱</a><a href="">洗衣机</a><a href="">家庭影院</a><a href="">DVD</a><a href="">迷你音响</a> <a href="">烟机/灶具</a><a href="">热水器</a><a href="">消毒具/洗碗柜</a><a href="">冰柜/冰吧</a><a href="">酒柜</a><a href="">家电配件</a> </dd> </dl> </div> <div class="font-right"> <div> <a href="#"><img src="./images/562f4971Na5379aba.jpg"></a> <a href="#"><img src="./images/54d9eef9N5bb8d27f.jpg"></a> <a href="#"><img src="./images/54d9ef02N99d26435.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef28N00328d44.jpg"></a> <a href="#"><img src="./images/54d9ef34N7cc61f4c.jpg"></a> <a href="#"><img src="./images/54d9ef3eN99aef1f0.jpg"></a> <a href="#"><img src="./images/54d9ef4cN4fe57f9b.jpg"></a> </div> </div> <div class="font-righty"> <a href="#"><img src="./images/5673a854N10856704.jpg"></a> <a href="#"><img src="./images/56a0376aN7de1bdcf.jpg"></a> </div> </div> </div> <div class="fore-10"> <div class="item fore10"> <h3> <a href="">母婴、</a> <a href="">玩具乐器</a> </h3> <i>></i> </div> <div class="font-item1"> <div class="font-left"> <div class="one"><a href="">品牌日<i>></i></a></div> <div class="two"><a href="">家电城<i>></i></a></div> <div class="three"><a href="">智能生活馆<i>></i></a></div> <div class="four"><a href="">京东净化馆<i>></i></a></div> <div class="five"><a href="">京东帮服务店<i>></i></a></div> <div class="sex"><a href="">值得买精选<i>></i></a></div> </div> <div class="font-lefty"> <dl class="fore1"> <dt><a href="">大家电<i>></i></a></dt> <dd> <a href="">平板电视</a> <a href="">空调</a> <a href="">冰箱</a> <a href="">洗衣机</a> <a href="">家庭影院</a> <a href="">DVD</a> <a href="">迷你音响</a> <a href="">烟机/灶具</a> <a href="">热水器</a> <a href="">消毒具/洗碗柜</a> <a href="">冰柜/冰吧</a> <a href="">酒柜</a> <a href="">家电配件</a> </dd> </dl> <dl class="fore1"> <dt><a href="">生活电器<i>></i></a></dt> <dd> <a href="">取暖电器</a> <a href="">净化器</a> <a href="">扫地机器人</a> <a href="">吸尘器</a> <a href="">加湿器</a> <a href="">挂烫机/熨斗</a> <a href="">电风扇</a> <a href="">冷风扇</a> <a href="">插座</a> <a href="">电话机</a> <a href="">净水器</a> <a href="">饮水机</a> <a href="">除湿机</a><a href="">干衣机清洁机</a><a href="">收录/音机</a><a href="">生活电器配件</a><a href="">其它生活电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">厨房电器<i>></i></a></dt> <dd> <a href="">电压力锅</a> <a href="">豆浆机</a> <a href="">面包机</a> <a href="">咖啡机</a> <a href="">微波炉料理/榨汁机</a> <a href="">电烤箱</a> <a href="">电磁炉</a> <a href="">电饼铛/烧烤盘</a> <a href="">煮蛋器酸奶机</a> <a href="">电水壶/热水瓶</a> <a href="">电炖锅</a> <a href="">多用途锅</a> <a href="">果蔬解毒机</a><a href="">养生壶/煎药壶</a><a href="">其它厨房电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">个护健康<i>></i></a></dt> <dd> <a href="">剃须刀剃/脱毛器</a> <a href="">口腔护理</a> <a href="">电吹风</a> <a href="">美容器</a> <a href="">理发器卷/直发器</a> <a href="">按摩椅</a> <a href="">按摩器</a> <a href="">足浴盆</a> <a href="">血压计</a> <a href="">健康秤/厨房秤</a> <a href="">血糖仪</a> <a href="">体温计</a> <a href="">计步器/脂肪检测仪</a><a href="">脂肪检测仪其它健康电器</a> </dd> </dl> <dl class="fore1"> <dt><a href="">五金家装<i>></i></a></dt> <dd> <a href="">平板电视</a> <a href="">空调</a> <a href="">冰箱</a> <a href="">洗衣机</a> <a href="">家庭影院</a> <a href="">DVD</a> <a href="">迷你音响</a> <a href="">烟机/灶具</a> <a href="">热水器</a> <a href="">消毒具/洗碗柜</a> <a href="">冰柜/冰吧</a> <a href="">酒柜</a> <a href="">家电配件</a> </dd> </dl> </div> <div class="font-right"> <div> <a href="#"><img src="./images/562f4971Na5379aba.jpg"></a> <a href="#"><img src="./images/54d9eef9N5bb8d27f.jpg"></a> <a href="#"><img src="./images/54d9ef02N99d26435.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> <a href="#"><img src="./images/54d9ef10Nd206a236.jpg"></a> </div> </div> <div class="font-righty"> <a href="#"><img src="./images/5673a854N10856704.jpg"></a> <a href="#"><img src="./images/56a0376aN7de1bdcf.jpg"></a> </div> </div> </div> <div class="fore-12"> <div class="item fore11"> <h3> <a href="">食品、</a> <a href="">酒类、</a> <a href="">生鲜、</a> <a href="">特产</a> </h3> <i>></i> </div> <div class="font-item1"> <div class="font-left"> <div class="one"><a href="">品牌日<i>></i></a></div> <div class="two"><a href="">家电城<i>></i></a></div> <div class="three"><a href="">智能生活馆<i>></i></a></div> <div class="four"><a href="">京东净化馆<i>></i></a></div> <div class="five"><a href="">京东帮服务店<i>></i></a></div> <div class="sex"><a href="">值得买精选<i>></i></a></div> </div> <div class="font-lefty"> <dl class="fore1"> <dt><a href="">大家电<i>></i></a></dt> <dd> <a href="">平板电视</a> <a href="">空调</a> <a href="">冰箱</a> <a href="">洗衣机</a> <a href="">家庭影院</a> <a href="">DVD</a> <a href="">迷你音响</a> <a href="">烟机/灶具</a> <a href="">热水器</a> <a href="">消毒具/洗碗柜</a> <a href="">冰柜/冰吧</a> <a href="">酒柜</a> <a href="">家电配件</a> </dd> </dl> <dl class="fore1"> <dt><a href="">生活电器<i>></i></a></dt> <dd> <a href="">取暖电器</a> <a href="">净化器</a> <a href="">扫地机器人</a> <a href="">吸尘器</a> <a href="">加湿器</a> <a href="">挂烫机/熨斗</a> <a href="">电风扇</a> <a href="">冷风扇</a> <a href="">插座</a> <a href="">电话机</a> <a href="">净水器</a> <a href="">饮水机</a> <a href="">除湿机</a><a href="">干衣机清洁机</a><a href="">收录/音机</a><a href="">生活电器配件</a><a href="">其它生活电器</a> </dd> </dl> <dl class=

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值