首页楼层
|
|
@ -463,5 +463,131 @@ class CommonController extends Controller
|
|||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取大分类
|
||||
* @author Devil
|
||||
* @blog http://gong.gg/
|
||||
* @version 1.0.0
|
||||
* @date 2018-08-10
|
||||
* @desc description
|
||||
*/
|
||||
protected function GetCommonGoodsCategory()
|
||||
{
|
||||
$data = $this->GetGoodsCategoryList(0);
|
||||
if(!empty($data))
|
||||
{
|
||||
$images_host = C('IMAGE_HOST');
|
||||
foreach($data as &$v)
|
||||
{
|
||||
$v['items'] = $this->GetGoodsCategoryList($v['id']);
|
||||
if(!empty($v['items']))
|
||||
{
|
||||
foreach($v['items'] as &$vs)
|
||||
{
|
||||
$vs['items'] = $this->GetGoodsCategoryList($vs['id']);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据pid获取商品分类列表
|
||||
* @author Devil
|
||||
* @blog http://gong.gg/
|
||||
* @version 1.0.0
|
||||
* @date 2018-08-10
|
||||
* @desc description
|
||||
* @param integer $pid [description]
|
||||
*/
|
||||
protected function GetGoodsCategoryList($pid = 0)
|
||||
{
|
||||
$images_host = C('IMAGE_HOST');
|
||||
$field = 'id,pid,icon,name,vice_name,describe,bg_color,big_images,sort';
|
||||
$data = M('GoodsCategory')->field($field)->where(['is_enable'=>1, 'pid'=>$pid])->order('sort asc')->select();
|
||||
if(!empty($data))
|
||||
{
|
||||
foreach($data as &$v)
|
||||
{
|
||||
$v['icon'] = empty($v['icon']) ? null : $images_host.$v['icon'];
|
||||
$v['big_images'] = empty($v['big_images']) ? null : $images_host.$v['big_images'];
|
||||
}
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取商品列表
|
||||
* @author Devil
|
||||
* @blog http://gong.gg/
|
||||
* @version 1.0.0
|
||||
* @date 2018-08-10
|
||||
* @desc description
|
||||
* @param array $params [ 输入参数: where, field, is_photo ]
|
||||
*/
|
||||
protected function GetCommonGoodsList($params = [])
|
||||
{
|
||||
$where = empty($params['where']) ? [] : $params['where'];
|
||||
$field = empty($params['field']) ? 'g.*' : $params['field'];
|
||||
$is_photo = (isset($params['is_photo']) && $params['is_photo'] == true) ? true : false;
|
||||
$data = M('Goods')->alias('g')->join(' INNER JOIN __GOODS_CATEGORY_JOIN__ AS gci ON g.id=gci.goods_id') ->field($field)->where($where)->order('g.id desc')->select();
|
||||
if(!empty($data))
|
||||
{
|
||||
$images_host = C('IMAGE_HOST');
|
||||
foreach($data as &$v)
|
||||
{
|
||||
if(isset($v['images']))
|
||||
{
|
||||
$v['images'] = empty($v['images']) ? null : $images_host.$v['images'];
|
||||
}
|
||||
if(isset($v['home_recommended_images']))
|
||||
{
|
||||
$v['home_recommended_images'] = empty($v['home_recommended_images']) ? null : $images_host.$v['home_recommended_images'];
|
||||
}
|
||||
|
||||
// 获取相册
|
||||
if($is_photo && !empty($v['id']))
|
||||
{
|
||||
$v['photo'] = M('GoodsPhoto')->where(['goods_id'=>$v['id'], 'is_show'=>1])->order('sort asc')->getField('images', true);
|
||||
if(!empty($v['photo']))
|
||||
{
|
||||
foreach($v['photo'] as &$vs)
|
||||
{
|
||||
$vs = $images_host.$vs;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取商品分类下的所有分类id
|
||||
* @author Devil
|
||||
* @blog http://gong.gg/
|
||||
* @version 1.0.0
|
||||
* @date 2018-08-10
|
||||
* @desc description
|
||||
* @param [type] $category_id [商品分类ID]
|
||||
*/
|
||||
protected function GetCommonGoodsCategoryItemsIds($category_id)
|
||||
{
|
||||
$data = M('GoodsCategory')->where(['pid'=>$category_id, 'is_enable'=>1])->getField('id', true);
|
||||
if(!empty($data))
|
||||
{
|
||||
foreach($data as $v)
|
||||
{
|
||||
$temp = $this->GetCommonGoodsCategoryItemsIds($v);
|
||||
if(!empty($temp))
|
||||
{
|
||||
$data = array_merge($data, $temp);
|
||||
}
|
||||
}
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
@ -33,13 +33,40 @@ class IndexController extends CommonController
|
|||
*/
|
||||
public function Index()
|
||||
{
|
||||
|
||||
// 首页轮播
|
||||
$this->assign('banner_list', $this->GetHomeBanner());
|
||||
|
||||
// 商品大分类
|
||||
$this->assign('goods_category_list', $this->GetCommonGoodsCategory());
|
||||
|
||||
// 楼层数据
|
||||
$this->assign('goods_floor_list', $this->GetHomeFloorList());
|
||||
|
||||
$this->display('Index');
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取首页楼层数据
|
||||
* @author Devil
|
||||
* @blog http://gong.gg/
|
||||
* @version 1.0.0
|
||||
* @date 2018-08-10
|
||||
* @desc description
|
||||
*/
|
||||
private function GetHomeFloorList()
|
||||
{
|
||||
$data = $this->GetGoodsCategoryList(0);
|
||||
if(!empty($data))
|
||||
{
|
||||
foreach($data as &$v)
|
||||
{
|
||||
$category_all = $this->GetCommonGoodsCategoryItemsIds($v['id']);
|
||||
$v['goods'] = $this->GetCommonGoodsList(['where'=>['gci.category_id'=>['in', $category_all]]]);
|
||||
}
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取首页banner
|
||||
* @author Devil
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
<include file="Public/HeaderNav" />
|
||||
|
||||
<!-- goods category -->
|
||||
<include file="Public/HomeGoodsCategory" />
|
||||
<include file="Public/GoodsCategory" />
|
||||
|
||||
<!-- 轮播右侧-内容1 -->
|
||||
<div class="am-g am-g-fixed smallnav">
|
||||
|
|
@ -188,132 +188,136 @@
|
|||
</div> -->
|
||||
|
||||
<!--甜点 f1 -->
|
||||
<div id="f1">
|
||||
<div class="am-container ">
|
||||
<div class="shopTitle ">
|
||||
<h4>甜品</h4>
|
||||
<h3>每一道甜品都有一个故事</h3>
|
||||
<div class="today-brands ">
|
||||
<a href="# ">桂花糕</a>
|
||||
<a href="# ">奶皮酥</a>
|
||||
<a href="# ">栗子糕 </a>
|
||||
<a href="# ">马卡龙</a>
|
||||
<a href="# ">铜锣烧</a>
|
||||
<a href="# ">豌豆黄</a>
|
||||
</div>
|
||||
<span class="more ">
|
||||
<a href="# ">更多美味<i class="am-icon-angle-right" style="padding-left:10px ;" ></i></a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="am-g am-g-fixed floodFour">
|
||||
<div class="am-u-sm-5 am-u-md-4 text-one list ">
|
||||
<div class="word">
|
||||
<a class="outer" href="#"><span class="inner"><b class="text">核桃</b></span></a>
|
||||
<a class="outer" href="#"><span class="inner"><b class="text">核桃</b></span></a>
|
||||
<a class="outer" href="#"><span class="inner"><b class="text">核桃</b></span></a>
|
||||
<a class="outer" href="#"><span class="inner"><b class="text">核桃</b></span></a>
|
||||
<a class="outer" href="#"><span class="inner"><b class="text">核桃</b></span></a>
|
||||
<a class="outer" href="#"><span class="inner"><b class="text">核桃</b></span></a>
|
||||
</div>
|
||||
<a href="# ">
|
||||
<div class="outer-con ">
|
||||
<div class="title ">
|
||||
开抢啦!
|
||||
<if condition="!empty($goods_floor_list)">
|
||||
<foreach name="goods_floor_list" item="floor">
|
||||
<div id="f{{$key+1}}">
|
||||
<div class="am-container">
|
||||
<div class="shopTitle">
|
||||
<h4>{{$floor.name}}</h4>
|
||||
<h3>{{$floor.vice_name}}</h3>
|
||||
<div class="today-brands ">
|
||||
<a href="# ">桂花糕</a>
|
||||
<a href="# ">奶皮酥</a>
|
||||
<a href="# ">栗子糕 </a>
|
||||
<a href="# ">马卡龙</a>
|
||||
<a href="# ">铜锣烧</a>
|
||||
<a href="# ">豌豆黄</a>
|
||||
</div>
|
||||
<div class="sub-title ">
|
||||
零食大礼包
|
||||
</div>
|
||||
<span class="more ">
|
||||
<a href="# ">更多美味<i class="am-icon-angle-right" style="padding-left:10px ;" ></i></a>
|
||||
</span>
|
||||
</div>
|
||||
<img src="../images/act1.png " />
|
||||
</a>
|
||||
<div class="triangle-topright"></div>
|
||||
</div>
|
||||
|
||||
<div class="am-u-sm-7 am-u-md-4 text-two sug">
|
||||
<div class="outer-con ">
|
||||
<div class="title ">
|
||||
雪之恋和风大福
|
||||
</div>
|
||||
<div class="sub-title ">
|
||||
¥13.8
|
||||
</div>
|
||||
|
||||
<div class="am-g am-g-fixed floodFour">
|
||||
<div class="am-u-sm-5 am-u-md-4 text-one list ">
|
||||
<div class="word">
|
||||
<a class="outer" href="#"><span class="inner"><b class="text">核桃</b></span></a>
|
||||
<a class="outer" href="#"><span class="inner"><b class="text">核桃</b></span></a>
|
||||
<a class="outer" href="#"><span class="inner"><b class="text">核桃</b></span></a>
|
||||
<a class="outer" href="#"><span class="inner"><b class="text">核桃</b></span></a>
|
||||
<a class="outer" href="#"><span class="inner"><b class="text">核桃</b></span></a>
|
||||
<a class="outer" href="#"><span class="inner"><b class="text">核桃</b></span></a>
|
||||
</div>
|
||||
<i class="am-icon-shopping-basket am-icon-md seprate"></i>
|
||||
<a href="# ">
|
||||
<div class="outer-con ">
|
||||
<div class="title ">
|
||||
开抢啦!
|
||||
</div>
|
||||
<div class="sub-title ">
|
||||
零食大礼包
|
||||
</div>
|
||||
</div>
|
||||
<img src="{{$floor.big_images}}" />
|
||||
</a>
|
||||
<div class="triangle-topright"></div>
|
||||
</div>
|
||||
<a href="# "><img src="../images/2.jpg" /></a>
|
||||
</div>
|
||||
|
||||
<div class="am-u-sm-7 am-u-md-4 text-two">
|
||||
<div class="outer-con ">
|
||||
<div class="title ">
|
||||
雪之恋和风大福
|
||||
|
||||
<div class="am-u-sm-7 am-u-md-4 text-two sug">
|
||||
<div class="outer-con ">
|
||||
<div class="title ">
|
||||
雪之恋和风大福
|
||||
</div>
|
||||
<div class="sub-title ">
|
||||
¥13.8
|
||||
</div>
|
||||
<i class="am-icon-shopping-basket am-icon-md seprate"></i>
|
||||
</div>
|
||||
<a href="# "><img src="../images/2.jpg" /></a>
|
||||
</div>
|
||||
<div class="sub-title ">
|
||||
¥13.8
|
||||
|
||||
<div class="am-u-sm-7 am-u-md-4 text-two">
|
||||
<div class="outer-con ">
|
||||
<div class="title ">
|
||||
雪之恋和风大福
|
||||
</div>
|
||||
<div class="sub-title ">
|
||||
¥13.8
|
||||
</div>
|
||||
<i class="am-icon-shopping-basket am-icon-md seprate"></i>
|
||||
</div>
|
||||
<a href="# "><img src="../images/1.jpg" /></a>
|
||||
</div>
|
||||
<i class="am-icon-shopping-basket am-icon-md seprate"></i>
|
||||
</div>
|
||||
<a href="# "><img src="../images/1.jpg" /></a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="am-u-sm-3 am-u-md-2 text-three big">
|
||||
<div class="outer-con ">
|
||||
<div class="title ">
|
||||
小优布丁
|
||||
<div class="am-u-sm-3 am-u-md-2 text-three big">
|
||||
<div class="outer-con ">
|
||||
<div class="title ">
|
||||
小优布丁
|
||||
</div>
|
||||
<div class="sub-title ">
|
||||
¥4.8
|
||||
</div>
|
||||
<i class="am-icon-shopping-basket am-icon-md seprate"></i>
|
||||
</div>
|
||||
<a href="# "><img src="../images/5.jpg" /></a>
|
||||
</div>
|
||||
<div class="sub-title ">
|
||||
¥4.8
|
||||
|
||||
<div class="am-u-sm-3 am-u-md-2 text-three sug">
|
||||
<div class="outer-con ">
|
||||
<div class="title ">
|
||||
小优布丁
|
||||
</div>
|
||||
<div class="sub-title ">
|
||||
¥4.8
|
||||
</div>
|
||||
<i class="am-icon-shopping-basket am-icon-md seprate"></i>
|
||||
</div>
|
||||
<a href="# "><img src="../images/3.jpg" /></a>
|
||||
</div>
|
||||
|
||||
<div class="am-u-sm-3 am-u-md-2 text-three ">
|
||||
<div class="outer-con ">
|
||||
<div class="title ">
|
||||
小优布丁
|
||||
</div>
|
||||
<div class="sub-title ">
|
||||
¥4.8
|
||||
</div>
|
||||
<i class="am-icon-shopping-basket am-icon-md seprate"></i>
|
||||
</div>
|
||||
<a href="# "><img src="../images/4.jpg" /></a>
|
||||
</div>
|
||||
|
||||
<div class="am-u-sm-3 am-u-md-2 text-three last big ">
|
||||
<div class="outer-con ">
|
||||
<div class="title ">
|
||||
小优布丁
|
||||
</div>
|
||||
<div class="sub-title ">
|
||||
¥4.8
|
||||
</div>
|
||||
<i class="am-icon-shopping-basket am-icon-md seprate"></i>
|
||||
</div>
|
||||
<a href="# "><img src="../images/5.jpg" /></a>
|
||||
</div>
|
||||
<i class="am-icon-shopping-basket am-icon-md seprate"></i>
|
||||
</div>
|
||||
<a href="# "><img src="../images/5.jpg" /></a>
|
||||
</div>
|
||||
|
||||
<div class="am-u-sm-3 am-u-md-2 text-three sug">
|
||||
<div class="outer-con ">
|
||||
<div class="title ">
|
||||
小优布丁
|
||||
</div>
|
||||
<div class="sub-title ">
|
||||
¥4.8
|
||||
</div>
|
||||
<i class="am-icon-shopping-basket am-icon-md seprate"></i>
|
||||
</div>
|
||||
<a href="# "><img src="../images/3.jpg" /></a>
|
||||
</div>
|
||||
|
||||
<div class="am-u-sm-3 am-u-md-2 text-three ">
|
||||
<div class="outer-con ">
|
||||
<div class="title ">
|
||||
小优布丁
|
||||
</div>
|
||||
<div class="sub-title ">
|
||||
¥4.8
|
||||
</div>
|
||||
<i class="am-icon-shopping-basket am-icon-md seprate"></i>
|
||||
</div>
|
||||
<a href="# "><img src="../images/4.jpg" /></a>
|
||||
</div>
|
||||
|
||||
<div class="am-u-sm-3 am-u-md-2 text-three last big ">
|
||||
<div class="outer-con ">
|
||||
<div class="title ">
|
||||
小优布丁
|
||||
</div>
|
||||
<div class="sub-title ">
|
||||
¥4.8
|
||||
</div>
|
||||
<i class="am-icon-shopping-basket am-icon-md seprate"></i>
|
||||
</div>
|
||||
<a href="# "><img src="../images/5.jpg" /></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreach>
|
||||
</if>
|
||||
|
||||
<!-- 坚果 f2 -->
|
||||
<div id="f2">
|
||||
<!-- <div id="f2">
|
||||
<div class="am-container ">
|
||||
<div class="shopTitle ">
|
||||
<h4>坚果</h4>
|
||||
|
|
@ -437,7 +441,7 @@
|
|||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
|
||||
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,54 @@
|
|||
<!--侧边导航 -->
|
||||
<div id="nav" class="navfull">
|
||||
<div class="area clearfix">
|
||||
<div class="category-content" id="guide_2">
|
||||
<div class="category">
|
||||
<ul class="category-list" id="js_climit_li">
|
||||
<if condition="!empty($goods_category_list)">
|
||||
<foreach name="goods_category_list" item="v">
|
||||
<li class="appliance js_toggle relative first">
|
||||
<div class="category-info">
|
||||
<h3 class="category-name b-category-name">
|
||||
<i><img src="{{$v.icon}}"></i>
|
||||
<a class="ml-22" title="{{$v.name}}">{{$v.name}}</a>
|
||||
</h3>
|
||||
<em>></em>
|
||||
</div>
|
||||
<div class="menu-item menu-in top">
|
||||
<div class="area-in">
|
||||
<div class="area-bg">
|
||||
<div class="menu-srot">
|
||||
<div class="sort-side">
|
||||
<if condition="!empty($v['items'])">
|
||||
<foreach name="v.items" item="vs">
|
||||
<dl class="dl-sort">
|
||||
<dt>
|
||||
<a title="{{$vs.name}}" href="#">
|
||||
<span title="{{$vs.name}}">{{$vs.name}}</span>
|
||||
</a>
|
||||
</dt>
|
||||
<if condition="!empty($vs['items'])">
|
||||
<foreach name="vs.items" item="vss">
|
||||
<dd>
|
||||
<a title="{{$vss.name}}" href="#">
|
||||
<span>{{$vss.name}}</span>
|
||||
</a>
|
||||
</dd>
|
||||
</foreach>
|
||||
</if>
|
||||
</dl>
|
||||
</foreach>
|
||||
</if>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</foreach>
|
||||
</if>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -1,535 +0,0 @@
|
|||
<!--侧边导航 -->
|
||||
<div id="nav" class="navfull">
|
||||
<div class="area clearfix">
|
||||
<div class="category-content" id="guide_2">
|
||||
|
||||
<div class="category">
|
||||
<ul class="category-list" id="js_climit_li">
|
||||
<li class="appliance js_toggle relative first">
|
||||
<div class="category-info">
|
||||
<h3 class="category-name b-category-name"><i><img src="../images/cake.png"></i><a class="ml-22" title="点心">点心/蛋糕</a></h3>
|
||||
<em>></em></div>
|
||||
<div class="menu-item menu-in top">
|
||||
<div class="area-in">
|
||||
<div class="area-bg">
|
||||
<div class="menu-srot">
|
||||
<div class="sort-side">
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="蛋糕">蛋糕</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
<dd><a title="千层饼" href="#"><span>千层饼</span></a></dd>
|
||||
<dd><a title="甜甜圈" href="#"><span>甜甜圈</span></a></dd>
|
||||
<dd><a title="蒸三明治" href="#"><span>蒸三明治</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="蛋糕">点心</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
<dd><a title="千层饼" href="#"><span>千层饼</span></a></dd>
|
||||
<dd><a title="甜甜圈" href="#"><span>甜甜圈</span></a></dd>
|
||||
<dd><a title="蒸三明治" href="#"><span>蒸三明治</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
|
||||
</div>
|
||||
<div class="brand-side">
|
||||
<dl class="dl-sort"><dt><span>实力商家</span></dt>
|
||||
<dd><a rel="nofollow" title="呵官方旗舰店" target="_blank" href="#" rel="nofollow"><span class="red" >呵官方旗舰店</span></a></dd>
|
||||
<dd><a rel="nofollow" title="格瑞旗舰店" target="_blank" href="#" rel="nofollow"><span >格瑞旗舰店</span></a></dd>
|
||||
<dd><a rel="nofollow" title="飞彦大厂直供" target="_blank" href="#" rel="nofollow"><span class="red" >飞彦大厂直供</span></a></dd>
|
||||
<dd><a rel="nofollow" title="红e·艾菲妮" target="_blank" href="#" rel="nofollow"><span >红e·艾菲妮</span></a></dd>
|
||||
<dd><a rel="nofollow" title="本真旗舰店" target="_blank" href="#" rel="nofollow"><span class="red" >本真旗舰店</span></a></dd>
|
||||
<dd><a rel="nofollow" title="杭派女装批发网" target="_blank" href="#" rel="nofollow"><span class="red" >杭派女装批发网</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<b class="arrow"></b>
|
||||
</li>
|
||||
<li class="appliance js_toggle relative">
|
||||
<div class="category-info">
|
||||
<h3 class="category-name b-category-name"><i><img src="../images/cookies.png"></i><a class="ml-22" title="饼干、膨化">饼干/膨化</a></h3>
|
||||
<em>></em></div>
|
||||
<div class="menu-item menu-in top">
|
||||
<div class="area-in">
|
||||
<div class="area-bg">
|
||||
<div class="menu-srot">
|
||||
<div class="sort-side">
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="饼干">饼干</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
</dl>
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="薯片">薯片</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
<dd><a title="千层饼" href="#"><span>千层饼</span></a></dd>
|
||||
<dd><a title="甜甜圈" href="#"><span>甜甜圈</span></a></dd>
|
||||
<dd><a title="蒸三明治" href="#"><span>蒸三明治</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="蛋糕">虾条</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
<dd><a title="千层饼" href="#"><span>千层饼</span></a></dd>
|
||||
<dd><a title="甜甜圈" href="#"><span>甜甜圈</span></a></dd>
|
||||
<dd><a title="蒸三明治" href="#"><span>蒸三明治</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div class="brand-side">
|
||||
<dl class="dl-sort"><dt><span>实力商家</span></dt>
|
||||
<dd><a rel="nofollow" title="YYKCLOT" target="_blank" href="#" rel="nofollow"><span class ="red" >YYKCLOT</span></a></dd>
|
||||
<dd><a rel="nofollow" title="池氏品牌男装" target="_blank" href="#" rel="nofollow"><span class ="red" >池氏品牌男装</span></a></dd>
|
||||
<dd><a rel="nofollow" title="男装日志" target="_blank" href="#" rel="nofollow"><span >男装日志</span></a></dd>
|
||||
<dd><a rel="nofollow" title="索比诺官方旗舰店" target="_blank" href="#" rel="nofollow"><span >索比诺官方旗舰店</span></a></dd>
|
||||
<dd><a rel="nofollow" title="onTTno傲徒" target="_blank" href="#" rel="nofollow"><span class ="red" >onTTno傲徒</span></a></dd>
|
||||
<dd><a rel="nofollow" title="玛狮路男装旗舰店" target="_blank" href="#" rel="nofollow"><span >玛狮路男装旗舰店</span></a></dd>
|
||||
<dd><a rel="nofollow" title="劳威特品牌男装" target="_blank" href="#" rel="nofollow"><span >劳威特品牌男装</span></a></dd>
|
||||
<dd><a rel="nofollow" title="卡斯郎世家批发城" target="_blank" href="#" rel="nofollow"><span class ="red" >卡斯郎世家批发城</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<b class="arrow"></b>
|
||||
</li>
|
||||
<li class="appliance js_toggle relative">
|
||||
<div class="category-info">
|
||||
<h3 class="category-name b-category-name"><i><img src="../images/meat.png"></i><a class="ml-22" title="熟食、肉类">熟食/肉类</a></h3>
|
||||
<em>></em></div>
|
||||
<div class="menu-item menu-in top">
|
||||
<div class="area-in">
|
||||
<div class="area-bg">
|
||||
<div class="menu-srot">
|
||||
<div class="sort-side">
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="猪肉脯">猪肉脯</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
</dl>
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="牛肉丝">牛肉丝</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
</dl>
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="小香肠">小香肠</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div class="brand-side">
|
||||
<dl class="dl-sort"><dt><span>实力商家</span></dt>
|
||||
<dd><a rel="nofollow" title="花颜巧语 " target="_blank" href="#" rel="nofollow"><span class="red" >花颜巧语 </span></a></dd>
|
||||
<dd><a rel="nofollow" title="糖衣小屋" target="_blank" href="#" rel="nofollow"><span >糖衣小屋</span></a></dd>
|
||||
<dd><a rel="nofollow" title="卡拉迪克 " target="_blank" href="#" rel="nofollow"><span class="red" >卡拉迪克 </span></a></dd>
|
||||
<dd><a rel="nofollow" title="暖春童话 " target="_blank" href="#" rel="nofollow"><span >暖春童话 </span></a></dd>
|
||||
<dd><a rel="nofollow" title="华盛童装批发行 " target="_blank" href="#" rel="nofollow"><span >华盛童装批发行 </span></a></dd>
|
||||
<dd><a rel="nofollow" title="奈仕华童装旗舰店" target="_blank" href="#" rel="nofollow"><span >奈仕华童装旗舰店</span></a></dd>
|
||||
<dd><a rel="nofollow" title="斑蒂尼BONDYNI" target="_blank" href="#" rel="nofollow"><span class="red" >斑蒂尼BONDYNI</span></a></dd>
|
||||
<dd><a rel="nofollow" title="猫儿朵朵 " target="_blank" href="#" rel="nofollow"><span >猫儿朵朵 </span></a></dd>
|
||||
<dd><a rel="nofollow" title="童衣阁" target="_blank" href="#" rel="nofollow"><span class="red" >童衣阁</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<b class="arrow"></b>
|
||||
</li>
|
||||
<li class="appliance js_toggle relative">
|
||||
<div class="category-info">
|
||||
<h3 class="category-name b-category-name"><i><img src="../images/bamboo.png"></i><a class="ml-22" title="素食、卤味">素食/卤味</a></h3>
|
||||
<em>></em></div>
|
||||
<div class="menu-item menu-in top">
|
||||
<div class="area-in">
|
||||
<div class="area-bg">
|
||||
<div class="menu-srot">
|
||||
<div class="sort-side">
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="豆干">豆干</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="干笋">干笋</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="鸭脖">鸭脖</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
<dd><a title="千层饼" href="#"><span>千层饼</span></a></dd>
|
||||
<dd><a title="甜甜圈" href="#"><span>甜甜圈</span></a></dd>
|
||||
<dd><a title="蒸三明治" href="#"><span>蒸三明治</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div class="brand-side">
|
||||
<dl class="dl-sort"><dt><span>实力商家</span></dt>
|
||||
<dd><a rel="nofollow" title="歌芙品牌旗舰店" target="_blank" href="#" rel="nofollow"><span class="red" >歌芙品牌旗舰店</span></a></dd>
|
||||
<dd><a rel="nofollow" title="爱丝蓝内衣厂" target="_blank" href="#" rel="nofollow"><span >爱丝蓝内衣厂</span></a></dd>
|
||||
<dd><a rel="nofollow" title="香港优蓓尔防辐射" target="_blank" href="#" rel="nofollow"><span >香港优蓓尔防辐射</span></a></dd>
|
||||
<dd><a rel="nofollow" title="蓉莉娜内衣批发" target="_blank" href="#" rel="nofollow"><span >蓉莉娜内衣批发</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<b class="arrow"></b>
|
||||
</li>
|
||||
<li class="appliance js_toggle relative">
|
||||
<div class="category-info">
|
||||
<h3 class="category-name b-category-name"><i><img src="../images/nut.png"></i><a class="ml-22" title="坚果、炒货">坚果/炒货</a></h3>
|
||||
<em>></em></div>
|
||||
<div class="menu-item menu-in top">
|
||||
<div class="area-in">
|
||||
<div class="area-bg">
|
||||
<div class="menu-srot">
|
||||
<div class="sort-side">
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="蛋糕">坚果</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
<dd><a title="千层饼" href="#"><span>千层饼</span></a></dd>
|
||||
<dd><a title="甜甜圈" href="#"><span>甜甜圈</span></a></dd>
|
||||
<dd><a title="蒸三明治" href="#"><span>蒸三明治</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="蛋糕">锅巴</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
<dd><a title="千层饼" href="#"><span>千层饼</span></a></dd>
|
||||
<dd><a title="甜甜圈" href="#"><span>甜甜圈</span></a></dd>
|
||||
<dd><a title="蒸三明治" href="#"><span>蒸三明治</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div class="brand-side">
|
||||
<dl class="dl-sort"><dt><span>实力商家</span></dt>
|
||||
<dd><a rel="nofollow" title="呵呵嘿官方旗舰店" target="_blank" href="#" rel="nofollow"><span class="red" >呵呵嘿官方旗舰店</span></a></dd>
|
||||
<dd><a rel="nofollow" title="格瑞旗舰店" target="_blank" href="#" rel="nofollow"><span >格瑞旗舰店</span></a></dd>
|
||||
<dd><a rel="nofollow" title="飞彦大厂直供" target="_blank" href="#" rel="nofollow"><span class="red" >飞彦大厂直供</span></a></dd>
|
||||
<dd><a rel="nofollow" title="红e·艾菲妮" target="_blank" href="#" rel="nofollow"><span >红e·艾菲妮</span></a></dd>
|
||||
<dd><a rel="nofollow" title="本真旗舰店" target="_blank" href="#" rel="nofollow"><span class="red" >本真旗舰店</span></a></dd>
|
||||
<dd><a rel="nofollow" title="杭派女装批发网" target="_blank" href="#" rel="nofollow"><span class="red" >杭派女装批发网</span></a></dd>
|
||||
<dd><a rel="nofollow" title="华伊阁旗舰店" target="_blank" href="#" rel="nofollow"><span >华伊阁旗舰店</span></a></dd>
|
||||
<dd><a rel="nofollow" title="独家折扣旗舰店" target="_blank" href="#" rel="nofollow"><span >独家折扣旗舰店</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<b class="arrow"></b>
|
||||
</li>
|
||||
<li class="appliance js_toggle relative">
|
||||
<div class="category-info">
|
||||
<h3 class="category-name b-category-name"><i><img src="../images/candy.png"></i><a class="ml-22" title="糖果、蜜饯">糖果/蜜饯</a></h3>
|
||||
<em>></em></div>
|
||||
<div class="menu-item menu-in top">
|
||||
<div class="area-in">
|
||||
<div class="area-bg">
|
||||
<div class="menu-srot">
|
||||
<div class="sort-side">
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="糖果">糖果</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
<dd><a title="千层饼" href="#"><span>千层饼</span></a></dd>
|
||||
<dd><a title="甜甜圈" href="#"><span>甜甜圈</span></a></dd>
|
||||
<dd><a title="蒸三明治" href="#"><span>蒸三明治</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="蜜饯">蜜饯</span></dt>
|
||||
<dd><a title="猕猴桃干" href="#"><span>猕猴桃干</span></a></dd>
|
||||
<dd><a title="糖樱桃" href="#"><span>糖樱桃</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
<dd><a title="千层饼" href="#"><span>千层饼</span></a></dd>
|
||||
<dd><a title="甜甜圈" href="#"><span>甜甜圈</span></a></dd>
|
||||
<dd><a title="蒸三明治" href="#"><span>蒸三明治</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div class="brand-side">
|
||||
<dl class="dl-sort"><dt><span>实力商家</span></dt>
|
||||
<dd><a rel="nofollow" title="YYKCLOT" target="_blank" href="#" rel="nofollow"><span class ="red" >YYKCLOT</span></a></dd>
|
||||
<dd><a rel="nofollow" title="池氏品牌男装" target="_blank" href="#" rel="nofollow"><span class ="red" >池氏品牌男装</span></a></dd>
|
||||
<dd><a rel="nofollow" title="男装日志" target="_blank" href="#" rel="nofollow"><span >男装日志</span></a></dd>
|
||||
<dd><a rel="nofollow" title="索比诺官方旗舰店" target="_blank" href="#" rel="nofollow"><span >索比诺官方旗舰店</span></a></dd>
|
||||
<dd><a rel="nofollow" title="onTTno傲徒" target="_blank" href="#" rel="nofollow"><span class ="red" >onTTno傲徒</span></a></dd>
|
||||
<dd><a rel="nofollow" title="卡斯郎世家批发城" target="_blank" href="#" rel="nofollow"><span class ="red" >卡斯郎世家批发城</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<b class="arrow"></b>
|
||||
</li>
|
||||
<li class="appliance js_toggle relative">
|
||||
<div class="category-info">
|
||||
<h3 class="category-name b-category-name"><i><img src="../images/chocolate.png"></i><a class="ml-22" title="巧克力">巧克力</a></h3>
|
||||
<em>></em></div>
|
||||
<div class="menu-item menu-in top">
|
||||
<div class="area-in">
|
||||
<div class="area-bg">
|
||||
<div class="menu-srot">
|
||||
<div class="sort-side">
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="蛋糕">巧克力</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
<dd><a title="千层饼" href="#"><span>千层饼</span></a></dd>
|
||||
<dd><a title="甜甜圈" href="#"><span>甜甜圈</span></a></dd>
|
||||
<dd><a title="蒸三明治" href="#"><span>蒸三明治</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="蛋糕">果冻</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
<dd><a title="千层饼" href="#"><span>千层饼</span></a></dd>
|
||||
<dd><a title="甜甜圈" href="#"><span>甜甜圈</span></a></dd>
|
||||
<dd><a title="蒸三明治" href="#"><span>蒸三明治</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div class="brand-side">
|
||||
<dl class="dl-sort"><dt><span>实力商家</span></dt>
|
||||
<dd><a rel="nofollow" title="花颜巧语 " target="_blank" href="#" rel="nofollow"><span class="red" >花颜巧语 </span></a></dd>
|
||||
<dd><a rel="nofollow" title="糖衣小屋" target="_blank" href="#" rel="nofollow"><span >糖衣小屋</span></a></dd>
|
||||
<dd><a rel="nofollow" title="卡拉迪克 " target="_blank" href="#" rel="nofollow"><span class="red" >卡拉迪克 </span></a></dd>
|
||||
<dd><a rel="nofollow" title="暖春童话 " target="_blank" href="#" rel="nofollow"><span >暖春童话 </span></a></dd>
|
||||
<dd><a rel="nofollow" title="华盛童装批发行 " target="_blank" href="#" rel="nofollow"><span >华盛童装批发行 </span></a></dd>
|
||||
<dd><a rel="nofollow" title="奈仕华童装旗舰店" target="_blank" href="#" rel="nofollow"><span >奈仕华童装旗舰店</span></a></dd>
|
||||
<dd><a rel="nofollow" title="斑蒂尼BONDYNI" target="_blank" href="#" rel="nofollow"><span class="red" >斑蒂尼BONDYNI</span></a></dd>
|
||||
<dd><a rel="nofollow" title="童衣阁" target="_blank" href="#" rel="nofollow"><span class="red" >童衣阁</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<b class="arrow"></b>
|
||||
</li>
|
||||
<li class="appliance js_toggle relative">
|
||||
<div class="category-info">
|
||||
<h3 class="category-name b-category-name"><i><img src="../images/fish.png"></i><a class="ml-22" title="海味、河鲜">海味/河鲜</a></h3>
|
||||
<em>></em></div>
|
||||
<div class="menu-item menu-in top">
|
||||
<div class="area-in">
|
||||
<div class="area-bg">
|
||||
<div class="menu-srot">
|
||||
<div class="sort-side">
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="海带丝">海带丝</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
<dd><a title="千层饼" href="#"><span>千层饼</span></a></dd>
|
||||
<dd><a title="甜甜圈" href="#"><span>甜甜圈</span></a></dd>
|
||||
<dd><a title="蒸三明治" href="#"><span>蒸三明治</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="小鱼干">小鱼干</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
</dl>
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="鱿鱼丝">鱿鱼丝</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div class="brand-side">
|
||||
<dl class="dl-sort"><dt><span>实力商家</span></dt>
|
||||
<dd><a rel="nofollow" title="歌芙品牌旗舰店" target="_blank" href="#" rel="nofollow"><span class="red" >歌芙品牌旗舰店</span></a></dd>
|
||||
<dd><a rel="nofollow" title="爱丝蓝内衣厂" target="_blank" href="#" rel="nofollow"><span >爱丝蓝内衣厂</span></a></dd>
|
||||
<dd><a rel="nofollow" title="炫点服饰" target="_blank" href="#" rel="nofollow"><span >炫点服饰</span></a></dd>
|
||||
<dd><a rel="nofollow" title="雪茵美内衣厂批发" target="_blank" href="#" rel="nofollow"><span >雪茵美内衣厂批发</span></a></dd>
|
||||
<dd><a rel="nofollow" title="金钻夫人" target="_blank" href="#" rel="nofollow"><span >金钻夫人</span></a></dd>
|
||||
<dd><a rel="nofollow" title="伊美莎内衣" target="_blank" href="#" rel="nofollow"><span class="red" >伊美莎内衣</span></a></dd>
|
||||
<dd><a rel="nofollow" title="粉客内衣旗舰店" target="_blank" href="#" rel="nofollow"><span >粉客内衣旗舰店</span></a></dd>
|
||||
<dd><a rel="nofollow" title="泽芳行旗舰店" target="_blank" href="#" rel="nofollow"><span >泽芳行旗舰店</span></a></dd>
|
||||
<dd><a rel="nofollow" title="彩婷" target="_blank" href="#" rel="nofollow"><span class="red" >彩婷</span></a></dd>
|
||||
<dd><a rel="nofollow" title="黛兰希" target="_blank" href="#" rel="nofollow"><span >黛兰希</span></a></dd>
|
||||
<dd><a rel="nofollow" title="香港优蓓尔防辐射" target="_blank" href="#" rel="nofollow"><span >香港优蓓尔防辐射</span></a></dd>
|
||||
<dd><a rel="nofollow" title="蓉莉娜内衣批发" target="_blank" href="#" rel="nofollow"><span >蓉莉娜内衣批发</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<b class="arrow"></b>
|
||||
</li>
|
||||
<li class="appliance js_toggle relative">
|
||||
<div class="category-info">
|
||||
<h3 class="category-name b-category-name"><i><img src="../images/tea.png"></i><a class="ml-22" title="花茶、果茶">花茶/果茶</a></h3>
|
||||
<em>></em></div>
|
||||
<div class="menu-item menu-in top">
|
||||
<div class="area-in">
|
||||
<div class="area-bg">
|
||||
<div class="menu-srot">
|
||||
<div class="sort-side">
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="蛋糕">蛋糕</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
<dd><a title="千层饼" href="#"><span>千层饼</span></a></dd>
|
||||
<dd><a title="甜甜圈" href="#"><span>甜甜圈</span></a></dd>
|
||||
<dd><a title="蒸三明治" href="#"><span>蒸三明治</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="蛋糕">点心</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
<dd><a title="千层饼" href="#"><span>千层饼</span></a></dd>
|
||||
<dd><a title="甜甜圈" href="#"><span>甜甜圈</span></a></dd>
|
||||
<dd><a title="蒸三明治" href="#"><span>蒸三明治</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div class="brand-side">
|
||||
<dl class="dl-sort"><dt><span>实力商家</span></dt>
|
||||
<dd><a title="今生只围你" target="_blank" href="#" rel="nofollow"><span >今生只围你</span></a></dd>
|
||||
<dd><a title="忆佳人" target="_blank" href="#" rel="nofollow"><span class="red" >忆佳人</span></a></dd>
|
||||
<dd><a title="斐洱普斯" target="_blank" href="#" rel="nofollow"><span class="red" >斐洱普斯</span></a></dd>
|
||||
<dd><a title="聚百坊" target="_blank" href="#" rel="nofollow"><span class="red" >聚百坊</span></a></dd>
|
||||
<dd><a title="朵朵棉织直营店" target="_blank" href="#" rel="nofollow"><span >朵朵棉织直营店</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<b class="arrow"></b>
|
||||
</li>
|
||||
<li class="appliance js_toggle relative last">
|
||||
<div class="category-info">
|
||||
<h3 class="category-name b-category-name"><i><img src="../images/package.png"></i><a class="ml-22" title="品牌、礼包">品牌/礼包</a></h3>
|
||||
<em>></em></div>
|
||||
<div class="menu-item menu-in top">
|
||||
<div class="area-in">
|
||||
<div class="area-bg">
|
||||
<div class="menu-srot">
|
||||
<div class="sort-side">
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="大包装">大包装</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
<dd><a title="千层饼" href="#"><span>千层饼</span></a></dd>
|
||||
<dd><a title="甜甜圈" href="#"><span>甜甜圈</span></a></dd>
|
||||
<dd><a title="蒸三明治" href="#"><span>蒸三明治</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
<dl class="dl-sort">
|
||||
<dt><span title="两件套">两件套</span></dt>
|
||||
<dd><a title="蒸蛋糕" href="#"><span>蒸蛋糕</span></a></dd>
|
||||
<dd><a title="脱水蛋糕" href="#"><span>脱水蛋糕</span></a></dd>
|
||||
<dd><a title="瑞士卷" href="#"><span>瑞士卷</span></a></dd>
|
||||
<dd><a title="软面包" href="#"><span>软面包</span></a></dd>
|
||||
<dd><a title="马卡龙" href="#"><span>马卡龙</span></a></dd>
|
||||
<dd><a title="千层饼" href="#"><span>千层饼</span></a></dd>
|
||||
<dd><a title="甜甜圈" href="#"><span>甜甜圈</span></a></dd>
|
||||
<dd><a title="蒸三明治" href="#"><span>蒸三明治</span></a></dd>
|
||||
<dd><a title="铜锣烧" href="#"><span>铜锣烧</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div class="brand-side">
|
||||
<dl class="dl-sort"><dt><span>实力商家</span></dt>
|
||||
<dd><a title="琳琅鞋业" target="_blank" href="#" rel="nofollow"><span >琳琅鞋业</span></a></dd>
|
||||
<dd><a title="宏利鞋业" target="_blank" href="#" rel="nofollow"><span >宏利鞋业</span></a></dd>
|
||||
<dd><a title="比爱靓点鞋业" target="_blank" href="#" rel="nofollow"><span >比爱靓点鞋业</span></a></dd>
|
||||
<dd><a title="浪人怪怪" target="_blank" href="#" rel="nofollow"><span >浪人怪怪</span></a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -309,13 +309,30 @@ background:url(../images/ibar_sprites.png) no-repeat;background-position:0px -23
|
|||
.nav-content {position: absolute;min-height: 100%; width: 200px;background-color: #fff;z-index: 99;text-align: center;right:-165px;border-radius: 5px 0 0 5px;border: 1px solid #999; padding-top:15px;}
|
||||
|
||||
|
||||
|
||||
.mp_qrcode img{width:100%;height: auto;}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.am-article-title.blog-title{font-size:24px;line-height: 1.15;font-weight: normal;margin: 10px 0px 20px;}
|
||||
.blog-content p{margin: 0 0 1.6rem 0;font-size:14px;}
|
||||
|
||||
|
||||
/**
|
||||
* 框架覆盖
|
||||
*/
|
||||
|
||||
/**
|
||||
* 轮播图片
|
||||
*/
|
||||
.am-slider-a1 .am-control-nav li a.am-active {
|
||||
background-color: #d3374b;
|
||||
}
|
||||
.am-slider-a1 .am-control-nav li a {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
background-color: rgba(0, 0, 0, 0.55);
|
||||
-webkit-box-shadow: inset 0 0 3px #fff;
|
||||
box-shadow: inset 0 0 3px #fff;
|
||||
}
|
||||
.am-slider-a1 .am-control-nav {
|
||||
bottom: 10px;
|
||||
}
|
||||
|
|
@ -102,6 +102,8 @@ text-align: center;float:none}
|
|||
.s-buy{display:none;}
|
||||
/*楼层*/
|
||||
.floodOne, .floodTwo, .floodThree, .floodFour, .floodFive, .floodSix, .floodSeven {background: #fff;}
|
||||
.floodFour .list img { height: 125px; }
|
||||
|
||||
/*文字说明*/
|
||||
.seprate{display: none;}
|
||||
.outer-con {position: absolute;top:0px;width:100% ;}
|
||||
|
|
@ -276,6 +278,7 @@ text-align: center;float:none}
|
|||
.outer-con .title ,.recommendation .info h3{font-size: 14px;font-weight: 600;}
|
||||
.sub-title {font-size:12px ;color:#666 ;}
|
||||
.floodSix .outer-con .title,.floodSeven .outer-con .title {font-size:14px ;}
|
||||
.floodFour .list img { height: 180px; }
|
||||
|
||||
/*一楼*/
|
||||
.floodOne .text-one img{width:96%;margin:60% 2% 2% 2%;}
|
||||
|
|
@ -482,6 +485,8 @@ top: 11px;text-align: right;}
|
|||
.big .outer-con{top:23% !important;}
|
||||
.list .outer-con{top:38% !important;width:98% !important;left:2% !important;text-align: center !important;}
|
||||
.list .outer-con .title{color: #fff !important;}
|
||||
.floodFour .list img { height: 230px; }
|
||||
.floodFour .list { overflow: hidden; }
|
||||
|
||||
|
||||
/*小标签*/
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 373 KiB |
|
After Width: | Height: | Size: 432 KiB |
|
After Width: | Height: | Size: 264 KiB |
|
After Width: | Height: | Size: 191 KiB |
|
After Width: | Height: | Size: 227 KiB |
|
After Width: | Height: | Size: 260 KiB |
|
After Width: | Height: | Size: 208 KiB |
|
After Width: | Height: | Size: 285 KiB |
|
After Width: | Height: | Size: 273 KiB |
|
After Width: | Height: | Size: 5.1 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 7.6 KiB |
|
After Width: | Height: | Size: 67 KiB |
|
After Width: | Height: | Size: 52 KiB |
|
After Width: | Height: | Size: 5.1 KiB |
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 107 KiB |
|
After Width: | Height: | Size: 96 KiB |
|
After Width: | Height: | Size: 108 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 59 KiB |
|
After Width: | Height: | Size: 59 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 51 KiB |
|
After Width: | Height: | Size: 74 KiB |
|
After Width: | Height: | Size: 432 KiB |
|
After Width: | Height: | Size: 322 KiB |
|
After Width: | Height: | Size: 375 KiB |
|
After Width: | Height: | Size: 393 KiB |
|
After Width: | Height: | Size: 329 KiB |
|
After Width: | Height: | Size: 303 KiB |
|
After Width: | Height: | Size: 191 KiB |
|
After Width: | Height: | Size: 260 KiB |
|
After Width: | Height: | Size: 273 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 81 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 65 KiB |
|
After Width: | Height: | Size: 81 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 2.9 KiB |