diff --git a/assets/signin.html b/assets/signin.html
index 4550cc2..b155bb9 100644
--- a/assets/signin.html
+++ b/assets/signin.html
@@ -63,10 +63,10 @@
         <div id="retrive-pwd-mask" class="mask"></div>
         <ul id="retrive-pwd-ways" class="retrive-pwd-ways">
             <li>
-                <a href=/phoneback.html>通过手机找回密码</a>
+                <a href=/passport/back/mobile>通过手机找回密码</a>
             </li>
             <li>
-                <a href=/emailback.html>通过邮箱找回密码</a>
+                <a href=/passport/back/email>通过邮箱找回密码</a>
             </li>
             <li id="cancel-retrive">
                 取消
diff --git a/library/LibModels/Wap/Passport/BackData.php b/library/LibModels/Wap/Passport/BackData.php
index 04f49b0..6f435e9 100644
--- a/library/LibModels/Wap/Passport/BackData.php
+++ b/library/LibModels/Wap/Passport/BackData.php
@@ -62,7 +62,8 @@ class BackData
 		$param['re-input'] = $pwd;
 		$param['code'] = $code;
         
-        return Yohobuy::post(Yohobuy::YOHOBUY_URL.'passport/back/update', $param);
+        // 默认返回的不是json类型数据,是html
+        return Yohobuy::post(Yohobuy::YOHOBUY_URL.'passport/back/update', $param, true);
     }
 
 
diff --git a/library/Plugin/DataProcess/FloorProcess.php b/library/Plugin/DataProcess/FloorProcess.php
index c512b00..9a803c8 100644
--- a/library/Plugin/DataProcess/FloorProcess.php
+++ b/library/Plugin/DataProcess/FloorProcess.php
@@ -264,36 +264,4 @@ class FloorProcess
         
         return array('plusStar'=>$data['data']);
     }
-
-    /**
-     * 也许喜欢数据处理方法
-     * @param  array $data 也许喜欢数据
-     * @param $type 类型 默认1:男首页 2:女首页  3:kids 4:lifestyle
-     * @return array       处理之后的也许喜欢数据
-     */
-    private static function maybeLike($data, $type)
-    {
-        $result = array('goods'=>array());
-
-        foreach ($data as $one) {
-            $product = array();
-            $product['id'] = $one['brand_id'];
-            $product['thumb'] = Helpers::getImageUrl($one['default_images'], 235, 314, 1);
-            $product['price'] = $one['market_price'];
-            $product['salePrice'] = $one['sales_price'];
-            // 处理tags
-            $product['tags'] = array();
-            foreach ($one['tags'] as $val) {
-                $product['tags'][$val] = 1;
-            }
-            $product['is_soon_sold_out'] = $one['is_soon_sold_out'];
-            
-            $product['name'] = $one['product_name'];
-            $product['url'] = $one['product_skn'];
-
-            $result['goods'][] = $product;
-        }
-
-        return $result;
-    }
 }
diff --git a/library/Plugin/DataProcess/NewSaleProcess.php b/library/Plugin/DataProcess/NewSaleProcess.php
index c876396..02b5d48 100644
--- a/library/Plugin/DataProcess/NewSaleProcess.php
+++ b/library/Plugin/DataProcess/NewSaleProcess.php
@@ -18,30 +18,65 @@ class NewSaleProcess
     public static function newSaleData($focus, $products)
     {
         $result = array(
-            'headerBanner' => self::bannerData($focus)
+            'headerBanner' => self::bannerData($focus),
+            'goodsContainer' => array()
         );
 
-        $list = array('list'=>array());
         foreach($products as $single)
         {
+            // 处理Tabs
             $noTab = true;
             if(isset($single['tabs']) && $noTab)
             {
-                $list['tabs'] = array();
-                foreach ($single['tabs'] as $one)
+                $result['tabs'] = array();
+                foreach ($single['tabs'] as $key => $one)
                 {
-                    $list['tabs'][] = $one;
+                    $tabItem = array();
+                    $tabItem['title'] = $one;
+                    if($key === 1)
+                    {
+                        $tabItem['focus'] = true;
+                    }
+                    $result['tabs'][] = $tabItem;
                 }
                 $noTab = false;
             }
 
-            $list['list'][] = $single['product_list'];
+            // 处理商品
+            $productsLi = array('goods'=>array());
+            if(isset($single['product_list']))
+            {
+                foreach ($single['product_list'] as $value) 
+                {
+                    $productsLi['goods'][] = Helpers::formatProduct($value);
+                }
+            }
+            
+            // 对于第一个productsLi添加show字段
+            if(count($result['goodsContainer']) === 0)
+            {
+                $productsLi['show'] = true;
+            }
+
+            $result['goodsContainer'][] = $productsLi;
         }
-        $result['listNav'] = $list;
         
         return $result;
     }
 
+    public static function selectData($data)
+    {
+        $result = array('goods'=>array());
+        if($data['code'] === 200)
+        {
+            foreach ($data['data']['product_list'] as $val) {
+                $result['goods'][] = Helpers::formatProduct($val);
+            }
+        }
+
+        return $result;
+    }
+
     /**
      * 处理页面顶部焦点图数据
      * 
diff --git a/script/nginx/logs/access.log b/script/nginx/logs/access.log
index 5a3a0ad..e026ceb 100644
--- a/script/nginx/logs/access.log
+++ b/script/nginx/logs/access.log
@@ -1022,3 +1022,386 @@
 127.0.0.1 - - [16/Oct/2015:10:43:30 +0800] "GET /product/newsale/index HTTP/1.1" 200 15665 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
 127.0.0.1 - - [16/Oct/2015:10:43:30 +0800] "GET /css/index.css HTTP/1.1" 200 60066 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
 127.0.0.1 - - [16/Oct/2015:10:43:32 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:26:07 +0800] "GET /girls HTTP/1.1" 200 71656 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:11:26:07 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 304 0 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:11:26:07 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 304 0 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:11:26:07 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 304 0 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:11:26:07 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 304 0 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:11:26:12 +0800] "GET /girls HTTP/1.1" 200 71656 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:26:12 +0800] "GET /css/index.css HTTP/1.1" 200 60066 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:26:12 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:26:12 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:26:12 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:26:12 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:26:12 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:26:48 +0800] "GET /girls HTTP/1.1" 200 71648 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:11:26:48 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 304 0 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:11:26:54 +0800] "GET /girls HTTP/1.1" 200 71656 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:26:54 +0800] "GET /css/index.css HTTP/1.1" 200 60441 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:26:54 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:26:54 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:26:54 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:26:54 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:26:54 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:27:02 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:27:02 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:27:05 +0800] "GET /girls HTTP/1.1" 200 71648 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:27:05 +0800] "GET /css/index.css HTTP/1.1" 200 60441 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:27:05 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:27:05 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:27:05 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:27:05 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:27:05 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:27:06 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:27:07 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:32:47 +0800] "GET /product/newsale/index HTTP/1.1" 200 15741 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:32:47 +0800] "GET /css/index.css HTTP/1.1" 200 60441 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:32:51 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:56:34 +0800] "GET /product/newsale/index HTTP/1.1" 200 28106 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:56:34 +0800] "GET /css/index.css HTTP/1.1" 200 59115 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:11:56:37 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:20:58 +0800] "GET /product/newsale/index HTTP/1.1" 200 28106 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:20:59 +0800] "GET /css/index.css HTTP/1.1" 200 59130 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:20:59 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:25:33 +0800] "GET /product/newsale/index HTTP/1.1" 200 28106 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:25:33 +0800] "GET /css/index.css HTTP/1.1" 200 59978 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:25:33 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:32:42 +0800] "GET /product/newsale/index HTTP/1.1" 200 15349 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:32:42 +0800] "GET /css/index.css HTTP/1.1" 200 59978 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:32:42 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:36:41 +0800] "GET /product/newsale/index HTTP/1.1" 200 15675 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:36:41 +0800] "GET /css/index.css HTTP/1.1" 200 59978 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:36:41 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:38:48 +0800] "GET /product/newsale/index HTTP/1.1" 200 15675 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:38:48 +0800] "GET /css/index.css HTTP/1.1" 200 59978 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:38:49 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:43:46 +0800] "GET /product/newsale/index HTTP/1.1" 200 15675 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:43:46 +0800] "GET /css/index.css HTTP/1.1" 200 59978 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:43:46 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:44:00 +0800] "GET /product/newsale/index HTTP/1.1" 200 15675 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:44:00 +0800] "GET /css/index.css HTTP/1.1" 200 59978 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:44:00 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:51:11 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:51:11 +0800] "GET /css/index.css HTTP/1.1" 200 6913 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:51:11 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:51:49 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:51:49 +0800] "GET /css/index.css HTTP/1.1" 200 6919 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:51:50 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:53:59 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:53:59 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:54:00 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:55:00 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:55:00 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:55:00 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:55:02 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:55:02 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:55:02 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:55:31 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:55:31 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:55:31 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:56:11 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:56:11 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:56:11 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:56:13 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:56:13 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:56:13 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:56:22 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:56:22 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:56:23 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:57:19 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:57:19 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:57:19 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:57:21 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:57:21 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:57:21 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:58:17 +0800] "GET /girls HTTP/1.1" 200 1617 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:58:17 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:58:26 +0800] "GET /girls HTTP/1.1" 200 1617 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:58:26 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:58:26 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:12:59:16 +0800] "GET /girls HTTP/1.1" 200 1617 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:00:09 +0800] "GET /girls HTTP/1.1" 200 1617 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:00:09 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:00:17 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:00:20 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:00:30 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:00:32 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:00:32 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:00:34 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:00:43 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:00:55 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:01:10 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:01:10 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:01:12 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:01:15 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:01:16 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac OS X) AppleWebKit/600.1.3 (KHTML, like Gecko) Version/8.0 Mobile/12A4345d Safari/600.1.4"
+127.0.0.1 - - [16/Oct/2015:13:01:16 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac OS X) AppleWebKit/600.1.3 (KHTML, like Gecko) Version/8.0 Mobile/12A4345d Safari/600.1.4"
+127.0.0.1 - - [16/Oct/2015:13:01:18 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac OS X) AppleWebKit/600.1.3 (KHTML, like Gecko) Version/8.0 Mobile/12A4345d Safari/600.1.4"
+127.0.0.1 - - [16/Oct/2015:13:01:23 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:01:23 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:01:25 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:01:29 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:01:29 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:01:31 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:01:45 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:01:57 +0800] "GET /product/newsale/index HTTP/1.1" 200 15489 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:01:57 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:01:57 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:02:17 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:03:15 +0800] "GET /product/newsale/index HTTP/1.1" 200 15529 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:03:15 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:03:15 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:03:27 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:03:35 +0800] "GET /product/newsale/index HTTP/1.1" 200 15529 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:03:35 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:03:35 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:03:36 +0800] "GET /product/newsale/index HTTP/1.1" 200 15529 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:03:36 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:03:36 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:03:47 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:03:48 +0800] "GET /product/newsale/index HTTP/1.1" 200 15499 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:03:48 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:03:48 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:04:01 +0800] "GET /girls HTTP/1.1" 200 1617 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:04:02 +0800] "GET /girls HTTP/1.1" 200 1617 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:04:02 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:04:13 +0800] "GET /girls HTTP/1.1" 200 1617 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:04:13 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:04:13 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:04:27 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:06:29 +0800] "GET /product/newsale/index HTTP/1.1" 200 15499 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:06:29 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/index" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:06:40 +0800] "GET /product/newsale/discount HTTP/1.1" 200 15362 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:06:40 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/product/newsale/discount" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:06:59 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:07:00 +0800] "GET /girls HTTP/1.1" 200 1617 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:07:01 +0800] "GET /girls HTTP/1.1" 200 1617 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:07:01 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:07:19 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:08:35 +0800] "GET /boys HTTP/1.1" 200 1474 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:08:35 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:08:49 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:11:08 +0800] "GET /boys HTTP/1.1" 200 1474 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:11:08 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:11:09 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:11:28 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:11:56 +0800] "GET /boys HTTP/1.1" 200 1474 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:11:56 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:11:56 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:12:08 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:13:18 +0800] "GET /boys HTTP/1.1" 200 1474 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:13:18 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:13:18 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:13:28 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:15:00 +0800] "GET /girls HTTP/1.1" 200 8572 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:15:00 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 304 0 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:15:00 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 304 0 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:15:00 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 304 0 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:15:02 +0800] "GET /girls HTTP/1.1" 200 8572 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:15:02 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:15:02 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:15:02 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:15:02 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:15:02 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:15:02 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:16:48 +0800] "GET /girls HTTP/1.1" 200 8572 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:16:48 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:16:48 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:16:48 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:16:48 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:16:48 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:16:48 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:16:49 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:17:01 +0800] "GET /girls HTTP/1.1" 200 8572 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:17:01 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:17:01 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:17:01 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:17:01 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:17:01 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:17:01 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:17:02 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:17:03 +0800] "GET /girls HTTP/1.1" 200 8572 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:17:04 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:17:04 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:17:04 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:17:04 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:17:04 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:17:04 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:17:04 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:18:41 +0800] "GET /girls HTTP/1.1" 200 89973 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:18:41 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:18:41 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:18:41 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:18:41 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:18:41 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:18:41 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:18:42 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:18:48 +0800] "GET /boys HTTP/1.1" 200 1474 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:18:49 +0800] "GET /boys HTTP/1.1" 200 1474 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:18:49 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:18:50 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:18:59 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:20:51 +0800] "GET /girls HTTP/1.1" 200 89950 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:20:52 +0800] "GET /girls HTTP/1.1" 200 89949 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:20:53 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:20:53 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:20:53 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:20:53 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:20:53 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:20:54 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:20:55 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:21:53 +0800] "GET /girls HTTP/1.1" 200 89934 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:21:58 +0800] "GET /boys HTTP/1.1" 200 1474 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:22:09 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:22:09 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:23:28 +0800] "GET /girls HTTP/1.1" 200 89973 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:23:33 +0800] "GET /girls HTTP/1.1" 200 89949 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:23:33 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:23:33 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:23:34 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:23:34 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:23:34 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:23:34 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:23:35 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:23:47 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:26:56 +0800] "GET /girls HTTP/1.1" 200 89942 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:26:56 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:26:56 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:26:56 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:26:56 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:26:56 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:26:58 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:26:58 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:27:29 +0800] "GET /girls HTTP/1.1" 200 89942 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:27:31 +0800] "GET /boys HTTP/1.1" 200 1474 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:27:32 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:27:37 +0800] "GET /girls HTTP/1.1" 200 89957 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:27:37 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:27:38 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:27:38 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:27:38 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:27:38 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:27:39 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:27:39 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:03 +0800] "GET /boys HTTP/1.1" 200 1474 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:03 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:04 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:06 +0800] "GET /boys HTTP/1.1" 200 1474 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:06 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:06 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:13 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:15 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:28:17 +0800] "GET /girls HTTP/1.1" 499 0 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:28:18 +0800] "GET /girls HTTP/1.1" 200 94629 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:13:28:22 +0800] "GET /girls HTTP/1.1" 200 94636 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:22 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:22 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:22 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:22 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:22 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:23 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:24 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:35 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:28:40 +0800] "GET /boys HTTP/1.1" 200 1474 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:40 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:40 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:13:28:55 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:13:29:02 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:15:13 +0800] "GET /boys HTTP/1.1" 200 1474 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:15:13 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:15:14 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:15:19 +0800] "GET /girls HTTP/1.1" 200 94729 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:15:19 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:15:19 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:15:19 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:15:19 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:15:19 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:15:21 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:15:21 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:15:50 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:04 +0800] "GET /boys HTTP/1.1" 499 0 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:14:25:05 +0800] "GET /boys HTTP/1.1" 200 87245 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:14:25:11 +0800] "GET /boys HTTP/1.1" 200 87260 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:11 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:11 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:11 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:11 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:11 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:12 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:13 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:18 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:26 +0800] "GET /boys HTTP/1.1" 200 87360 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:26 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:26 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:26 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:26 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:26 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:27 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:28 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:25:53 +0800] "GET /boys HTTP/1.1" 200 87376 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:14:25:55 +0800] "GET /kids HTTP/1.1" 200 1497 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:14:26:03 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:14:26:03 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:14:26:03 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:26:30 +0800] "GET /kids HTTP/1.1" 200 1497 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:26:30 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/kids" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:26:31 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/kids" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:26:43 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:14:26:48 +0800] "GET /kids HTTP/1.1" 200 1497 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:26:48 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/kids" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:26:48 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/kids" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:03 +0800] "-" 400 0 "-" "-"
+127.0.0.1 - - [16/Oct/2015:14:27:19 +0800] "GET /kids HTTP/1.1" 200 41687 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:19 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/kids" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:19 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:19 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:19 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:19 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:19 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:19 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:19 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/kids" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:26 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:26 +0800] "GET /boys HTTP/1.1" 200 87353 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:26 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:27 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:28 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:28 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:28 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:28 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:31 +0800] "GET /girls HTTP/1.1" 200 94139 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:31 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:31 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:32 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:32 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:32 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:35 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:39 +0800] "GET /kids HTTP/1.1" 200 41680 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:39 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/kids" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:39 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:39 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:39 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:39 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:39 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:40 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/kids" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:40 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:40 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/girls" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:50 +0800] "GET /lifestyle HTTP/1.1" 200 51778 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
+127.0.0.1 - - [16/Oct/2015:14:27:55 +0800] "GET /lifestyle HTTP/1.1" 200 51770 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:55 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/lifestyle" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:55 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:55 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:55 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:55 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:55 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:55 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/lifestyle" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:27:55 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:28:04 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/boys" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:28:19 +0800] "GET /img/yohologo01.png?1444716802 HTTP/1.1" 200 5365 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:37:13 +0800] "GET /kids HTTP/1.1" 200 41680 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:37:13 +0800] "GET /css/index.css HTTP/1.1" 200 59833 "http://m.dev.yohobuy.com/kids" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:37:13 +0800] "GET /font/iconfont.woff?1444716801 HTTP/1.1" 200 7740 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:37:13 +0800] "GET /img/app-logo.png?1441873709 HTTP/1.1" 200 5598 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:37:13 +0800] "GET /img/yohologo02.png?1444716802 HTTP/1.1" 200 6161 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:37:13 +0800] "GET /img/close-icon.png?1441873709 HTTP/1.1" 200 1700 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:37:13 +0800] "GET /img/more-brand.png?1441873709 HTTP/1.1" 200 6652 "http://static.dev.yohobuy.com/css/index.css" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
+127.0.0.1 - - [16/Oct/2015:14:37:14 +0800] "GET /favicon.ico HTTP/1.1" 200 1150 "http://m.dev.yohobuy.com/kids" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
diff --git a/static/index.js b/static/index.js
index a13c95a..b513336 100644
--- a/static/index.js
+++ b/static/index.js
@@ -2,6 +2,6 @@ var yohobuy;
 
 require('./js/passport/index');
 require('./js/guang/index');
-require('./js/homePage/index');
+require('./js/home/index');
 
 module.exports = yohobuy;
diff --git a/static/js/homePage/boys.js b/static/js/home/boys.js
index 922ff47..922ff47 100644
--- a/static/js/homePage/boys.js
+++ b/static/js/home/boys.js
diff --git a/static/js/homePage/column-goods.js b/static/js/home/column-goods.js
index 6876198..6876198 100644
--- a/static/js/homePage/column-goods.js
+++ b/static/js/home/column-goods.js
diff --git a/static/js/homePage/girls.js b/static/js/home/girls.js
index 101b24f..101b24f 100644
--- a/static/js/homePage/girls.js
+++ b/static/js/home/girls.js
diff --git a/static/js/homePage/home.js b/static/js/home/home.js
index 3bda422..3bda422 100644
--- a/static/js/homePage/home.js
+++ b/static/js/home/home.js
diff --git a/static/js/homePage/index.js b/static/js/home/index.js
index ec5d1dc..ec5d1dc 100644
--- a/static/js/homePage/index.js
+++ b/static/js/home/index.js
diff --git a/static/js/homePage/kids.js b/static/js/home/kids.js
index bb015a2..bb015a2 100644
--- a/static/js/homePage/kids.js
+++ b/static/js/home/kids.js
diff --git a/static/js/homePage/lifestyle.js b/static/js/home/lifestyle.js
index c7f5264..c7f5264 100644
--- a/static/js/homePage/lifestyle.js
+++ b/static/js/home/lifestyle.js
diff --git a/static/js/homePage/maybe-like.js b/static/js/home/maybe-like.js
index 857d94c..857d94c 100644
--- a/static/js/homePage/maybe-like.js
+++ b/static/js/home/maybe-like.js
diff --git a/static/js/passport/back/mobile.js b/static/js/passport/back/mobile.js
index 83e5268..118ee9c 100644
--- a/static/js/passport/back/mobile.js
+++ b/static/js/passport/back/mobile.js
@@ -50,7 +50,7 @@ $btnNext.on('touchstart', function() {
             },
             success: function(data) {
                 if (data.code === 200) {
-                    location.href = '/passport/back/code';
+                    location.href = data.data;
                 } else {
                     showErrTip(data.message);
                 }
diff --git a/static/js/product/newsale/discount.js b/static/js/product/newsale/discount.js
index e69de29..b1f2d54 100644
--- a/static/js/product/newsale/discount.js
+++ b/static/js/product/newsale/discount.js
@@ -0,0 +1,33 @@
+var $ = require('yoho.zepto'),
+    lazyLoad = require('yoho.lazyload');
+
+var $curNav,
+    $navList = $('#discount-nav'),
+    $newArrivalList = $('#discount-goods-list'),
+    $goods = $newArrivalList.children('.goods-list');
+
+lazyLoad($('img.lazy'));
+$curNav = $navList.children('.focus');
+
+$('#discount-nav').delegate('li', 'touchstart', function() {
+    var $this = $(this),
+        $content,
+        index;
+
+    if ($this.hasClass('focus')) {
+        return;
+    }
+
+    index = $this.index();
+
+    $this.addClass('focus');
+    $curNav.removeClass('focus');
+
+    $goods.not('.hide').addClass('hide');
+    $content = $goods.eq(index);
+    $content.removeClass('hide');
+
+    $curNav = $this;
+
+    $(document).trigger('scroll'); //Trigger lazyLoad
+});
\ No newline at end of file
diff --git a/static/js/product/newsale/newarrival.js b/static/js/product/newsale/newarrival.js
index a299c4f..6202b34 100644
--- a/static/js/product/newsale/newarrival.js
+++ b/static/js/product/newsale/newarrival.js
@@ -2,9 +2,9 @@ var $ = require('yoho.zepto'),
     lazyLoad = require('yoho.lazyload');
 
 var $curNav,
-    $navList = $('#newarrival-nav'), 
-    $newArrivalList = $('#newarrival-list'),
-    $goods = $newArrivalList.children('.newarrival-goods-list');
+    $navList = $('#newarrival-nav'),
+    $newArrivalList = $('#newarrival-goods-list'),
+    $goods = $newArrivalList.children('.goods-list');
 
 lazyLoad($('img.lazy'));
 $curNav = $navList.children('.focus');
@@ -19,10 +19,10 @@ $('#newarrival-nav').delegate('li', 'touchstart', function() {
     }
 
     index = $this.index();
-    
+
     $this.addClass('focus');
     $curNav.removeClass('focus');
-    
+
     $goods.not('.hide').addClass('hide');
     $content = $goods.eq(index);
     $content.removeClass('hide');
diff --git a/static/sass/homepage/_banner-bottom.scss b/static/sass/home/_banner-bottom.scss
index a8721dd..a8721dd 100644
--- a/static/sass/homepage/_banner-bottom.scss
+++ b/static/sass/home/_banner-bottom.scss
diff --git a/static/sass/homepage/_banner-center.scss b/static/sass/home/_banner-center.scss
index a125a27..a125a27 100644
--- a/static/sass/homepage/_banner-center.scss
+++ b/static/sass/home/_banner-center.scss
diff --git a/static/sass/homepage/_banner-top.scss b/static/sass/home/_banner-top.scss
index de38a37..de38a37 100644
--- a/static/sass/homepage/_banner-top.scss
+++ b/static/sass/home/_banner-top.scss
diff --git a/static/sass/homepage/_creative-life.scss b/static/sass/home/_creative-life.scss
index 1001b6b..1001b6b 100644
--- a/static/sass/homepage/_creative-life.scss
+++ b/static/sass/home/_creative-life.scss
diff --git a/static/sass/homepage/_fine-brands.scss b/static/sass/home/_fine-brands.scss
index 4c9a871..4c9a871 100644
--- a/static/sass/homepage/_fine-brands.scss
+++ b/static/sass/home/_fine-brands.scss
diff --git a/static/sass/homepage/_floor-header.scss b/static/sass/home/_floor-header.scss
index 623c3a4..623c3a4 100644
--- a/static/sass/homepage/_floor-header.scss
+++ b/static/sass/home/_floor-header.scss
diff --git a/static/sass/homepage/_footer.scss b/static/sass/home/_footer.scss
index 5baab66..5baab66 100644
--- a/static/sass/homepage/_footer.scss
+++ b/static/sass/home/_footer.scss
diff --git a/static/sass/homepage/_goods-category.scss b/static/sass/home/_goods-category.scss
index db1db5e..db1db5e 100644
--- a/static/sass/homepage/_goods-category.scss
+++ b/static/sass/home/_goods-category.scss
diff --git a/static/sass/homepage/_header-download.scss b/static/sass/home/_header-download.scss
index 56e5fc0..56e5fc0 100644
--- a/static/sass/homepage/_header-download.scss
+++ b/static/sass/home/_header-download.scss
diff --git a/static/sass/homepage/_header.scss b/static/sass/home/_header.scss
index db0d7c4..db0d7c4 100644
--- a/static/sass/homepage/_header.scss
+++ b/static/sass/home/_header.scss
diff --git a/static/sass/homepage/_home-header.scss b/static/sass/home/_home-header.scss
index 86984c5..86984c5 100644
--- a/static/sass/homepage/_home-header.scss
+++ b/static/sass/home/_home-header.scss
diff --git a/static/sass/homepage/_hot-brands.scss b/static/sass/home/_hot-brands.scss
index ac1e859..ac1e859 100644
--- a/static/sass/homepage/_hot-brands.scss
+++ b/static/sass/home/_hot-brands.scss
diff --git a/static/sass/homepage/_hot-category.scss b/static/sass/home/_hot-category.scss
index 596b54c..596b54c 100644
--- a/static/sass/homepage/_hot-category.scss
+++ b/static/sass/home/_hot-category.scss
diff --git a/static/sass/homepage/_icons-enter.scss b/static/sass/home/_icons-enter.scss
index 4be073a..4be073a 100644
--- a/static/sass/homepage/_icons-enter.scss
+++ b/static/sass/home/_icons-enter.scss
diff --git a/static/sass/home/_index.scss b/static/sass/home/_index.scss
new file mode 100644
index 0000000..7bc61ff
--- /dev/null
+++ b/static/sass/home/_index.scss
@@ -0,0 +1,39 @@
+@import "header-download", "banner-top","banner-center","banner-bottom", "side-nav", "floor-header", "hot-brands", "fine-brands", "creative-life", "plus-star", "footer", "maybe-like",
+"icons-enter","trendsetter-collocation",
+"trend-topics","goods-category","hot-brands", "hot-category", "home-header";
+ 
+.mobile-container{
+    width: 100%;
+    overflow: hidden;
+}
+.mobile-wrap {
+    position: relative;
+    z-index: 2;
+    background: #f0f0f0;
+    @include transition(transform .3s);
+}
+
+.mobile-wrap.menu-open {
+    @include transform(translateX(540rem / $pxConvertRem));
+    @include transition(transform .3s);
+}
+
+
+.overlay {
+    display: none;
+    position: absolute;
+    top: 0; 
+    left: 0;
+    right: 0;
+    bottom: 0;
+    background: #000;
+    opacity: 0.3;
+    z-index: 99;
+}
+
+.overlay.show {
+    display: block;
+}
+.login-tip{
+    display: none;
+}
\ No newline at end of file
diff --git a/static/sass/homepage/_maybe-like.scss b/static/sass/home/_maybe-like.scss
index 7e07a6a..7e07a6a 100644
--- a/static/sass/homepage/_maybe-like.scss
+++ b/static/sass/home/_maybe-like.scss
diff --git a/static/sass/homepage/_plus-star.scss b/static/sass/home/_plus-star.scss
index 7284c8b..7284c8b 100644
--- a/static/sass/homepage/_plus-star.scss
+++ b/static/sass/home/_plus-star.scss
diff --git a/static/sass/homepage/_search-input.scss b/static/sass/home/_search-input.scss
index 43db56f..43db56f 100644
--- a/static/sass/homepage/_search-input.scss
+++ b/static/sass/home/_search-input.scss
diff --git a/static/sass/homepage/_side-nav.scss b/static/sass/home/_side-nav.scss
index e0dca2f..e0dca2f 100644
--- a/static/sass/homepage/_side-nav.scss
+++ b/static/sass/home/_side-nav.scss
diff --git a/static/sass/homepage/_trend-topics.scss b/static/sass/home/_trend-topics.scss
index f7edefd..f7edefd 100644
--- a/static/sass/homepage/_trend-topics.scss
+++ b/static/sass/home/_trend-topics.scss
diff --git a/static/sass/homepage/_trend-tops.scss b/static/sass/home/_trend-tops.scss
index 80e7a55..80e7a55 100644
--- a/static/sass/homepage/_trend-tops.scss
+++ b/static/sass/home/_trend-tops.scss
diff --git a/static/sass/homepage/_trendsetter-collocation.scss b/static/sass/home/_trendsetter-collocation.scss
index becc750..becc750 100644
--- a/static/sass/homepage/_trendsetter-collocation.scss
+++ b/static/sass/home/_trendsetter-collocation.scss
diff --git a/static/sass/homepage/_two-column-goods.scss b/static/sass/home/_two-column-goods.scss
index 33a9af8..33a9af8 100644
--- a/static/sass/homepage/_two-column-goods.scss
+++ b/static/sass/home/_two-column-goods.scss
diff --git a/static/sass/homepage/_grid.scss b/static/sass/homepage/_grid.scss
deleted file mode 100644
index cc5180b..0000000
--- a/static/sass/homepage/_grid.scss
+++ /dev/null
@@ -1,304 +0,0 @@
-// Grids
-// -------------------------------
-
-$grid-padding-width:              10px !default;
-$grid-responsive-sm-break:        567px !default;  // smaller than landscape phone
-$grid-responsive-md-break:        767px !default;  // smaller than portrait tablet
-$grid-responsive-lg-break:        1023px !default; // smaller than landscape tablet
-@mixin display-flex {
-  display: -webkit-box;
-  display: -webkit-flex;
-  display: -moz-box;
-  display: -moz-flex;
-  display: -ms-flexbox;
-  display: flex;
-}
-
-@mixin display-inline-flex {
-  display: -webkit-inline-box;
-  display: -webkit-inline-flex;
-  display: -moz-inline-flex;
-  display: -ms-inline-flexbox;
-  display: inline-flex;
-}
-
-@mixin flex-direction($value: row) {
-  @if $value == row-reverse {
-    -webkit-box-direction: reverse;
-    -webkit-box-orient: horizontal;
-  } @else if $value == column {
-    -webkit-box-direction: normal;
-    -webkit-box-orient: vertical;
-  } @else if $value == column-reverse {
-    -webkit-box-direction: reverse;
-    -webkit-box-orient: vertical;
-  } @else {
-    -webkit-box-direction: normal;
-    -webkit-box-orient: horizontal;
-  }
-  -webkit-flex-direction: $value;
-  -moz-flex-direction: $value;
-  -ms-flex-direction: $value;
-  flex-direction: $value;
-}
-
-@mixin flex-wrap($value: nowrap) {
-  // No Webkit Box fallback.
-  -webkit-flex-wrap: $value;
-  -moz-flex-wrap: $value;
-  @if $value == nowrap {
-      -ms-flex-wrap: none;
-  } @else {
-      -ms-flex-wrap: $value;
-  }
-  flex-wrap: $value;
-}
-
-@mixin flex($fg: 1, $fs: null, $fb: null) {
-  -webkit-box-flex: $fg;
-  -webkit-flex: $fg $fs $fb;
-  -moz-box-flex: $fg;
-  -moz-flex: $fg $fs $fb;
-  -ms-flex: $fg $fs $fb;
-  flex: $fg $fs $fb;
-}
-
-@mixin flex-flow($values: (row nowrap)) {
-  // No Webkit Box fallback.
-  -webkit-flex-flow: $values;
-  -moz-flex-flow: $values;
-  -ms-flex-flow: $values;
-  flex-flow: $values;
-}
-
-@mixin align-items($value: stretch) {
-  @if $value == flex-start {
-    -webkit-box-align: start;
-    -ms-flex-align: start;
-  } @else if $value == flex-end {
-    -webkit-box-align: end;
-    -ms-flex-align: end;
-  } @else {
-    -webkit-box-align: $value;
-    -ms-flex-align: $value;
-  }
-  -webkit-align-items: $value;
-  -moz-align-items: $value;
-  align-items: $value;
-}
-
-@mixin align-self($value: auto) {
-  -webkit-align-self: $value;
-  -moz-align-self: $value;
-  @if $value == flex-start {
-    -ms-flex-item-align: start;
-  } @else if $value == flex-end {
-    -ms-flex-item-align: end;
-  } @else {
-    -ms-flex-item-align: $value;
-  }
-  align-self: $value;
-}
-
-@mixin align-content($value: stretch) {
-  -webkit-align-content: $value;
-  -moz-align-content: $value;
-  @if $value == flex-start {
-    -ms-flex-line-pack: start;
-  } @else if $value == flex-end {
-    -ms-flex-line-pack: end;
-  } @else {
-    -ms-flex-line-pack: $value;
-  }
-  align-content: $value;
-}
-
-@mixin justify-content($value: stretch) {
-  @if $value == flex-start {
-    -webkit-box-pack: start;
-    -ms-flex-pack: start;
-  } @else if $value == flex-end {
-    -webkit-box-pack: end;
-    -ms-flex-pack: end;
-  } @else if $value == space-between {
-    -webkit-box-pack: justify;
-    -ms-flex-pack: justify;
-  } @else {
-    -webkit-box-pack: $value;
-    -ms-flex-pack: $value;
-  }
-  -webkit-justify-content: $value;
-  -moz-justify-content: $value;
-  justify-content: $value;
-}
-
-@mixin flex-order($n) {
-  -webkit-order: $n;
-  -ms-flex-order: $n;
-  order: $n;
-  -webkit-box-ordinal-group: $n;
-}
-
-@mixin responsive-grid-break($selector, $max-width) {
-  @media (max-width: $max-width) {
-    #{$selector} {
-      -webkit-box-direction: normal;
-      -moz-box-direction: normal;
-      -webkit-box-orient: vertical;
-      -moz-box-orient: vertical;
-      -webkit-flex-direction: column;
-      -ms-flex-direction: column;
-      flex-direction: column;
-
-      .col, .col-10, .col-20, .col-25, .col-33, .col-34, .col-50, .col-66, .col-67, .col-75, .col-80, .col-90 {
-        @include flex(1);
-        margin-bottom: ($grid-padding-width * 3) / 2;
-        margin-left: 0;
-        max-width: 100%;
-        width: 100%;
-      }
-    }
-  }
-}
-
-.row {
-  @include display-flex();
-  padding: ($grid-padding-width / 2);
-  width: 100%;
-}
-
-.row-wrap {
-  @include flex-wrap(wrap);
-}
-
-.row-no-padding {
-  padding: 0;
-
-  > .col {
-    padding: 0;
-  }
-}
-
-.row + .row {
-  margin-top: ($grid-padding-width / 2) * -1;
-  padding-top: 0;
-}
-
-.col {
-  @include flex(1);
-  display: block;
-  padding: ($grid-padding-width / 2);
-  width: 100%;
-}
-
-
-/* Vertically Align Columns */
-/* .row-* vertically aligns every .col in the .row */
-.row-top {
-  @include align-items(flex-start);
-}
-.row-bottom {
-  @include align-items(flex-end);
-}
-.row-center {
-  @include align-items(center);
-}
-.row-stretch {
-  @include align-items(stretch);
-}
-.row-baseline {
-  @include align-items(baseline);
-}
-
-/* .col-* vertically aligns an individual .col */
-.col-top {
-  @include align-self(flex-start);
-}
-.col-bottom {
-  @include align-self(flex-end);
-}
-.col-center {
-  @include align-self(center);
-}
-
-/* Column Offsets */
-.col-offset-10 {
-  margin-left: 10%;
-}
-.col-offset-20 {
-  margin-left: 20%;
-}
-.col-offset-25 {
-  margin-left: 25%;
-}
-.col-offset-33, .col-offset-34 {
-  margin-left: 33.3333%;
-}
-.col-offset-50 {
-  margin-left: 50%;
-}
-.col-offset-66, .col-offset-67 {
-  margin-left: 66.6666%;
-}
-.col-offset-75 {
-  margin-left: 75%;
-}
-.col-offset-80 {
-  margin-left: 80%;
-}
-.col-offset-90 {
-  margin-left: 90%;
-}
-
-
-/* Explicit Column Percent Sizes */
-/* By default each grid column will evenly distribute */
-/* across the grid. However, you can specify individual */
-/* columns to take up a certain size of the available area */
-.col-10 {
-  @include flex(0, 0, 10%);
-  max-width: 10%;
-}
-.col-20 {
-  @include flex(0, 0, 20%);
-  max-width: 20%;
-}
-.col-25 {
-  @include flex(0, 0, 25%);
-  max-width: 25%;
-}
-.col-33, .col-34 {
-  @include flex(0, 0, 33.3333%);
-  max-width: 33.3333%;
-}
-.col-50 {
-  @include flex(0, 0, 50%);
-  max-width: 50%;
-}
-.col-66, .col-67 {
-  @include flex(0, 0, 66.6666%);
-  max-width: 66.6666%;
-}
-.col-75 {
-  @include flex(0, 0, 75%);
-  max-width: 75%;
-}
-.col-80 {
-  @include flex(0, 0, 80%);
-  max-width: 80%;
-}
-.col-90 {
-  @include flex(0, 0, 90%);
-  max-width: 90%;
-}
-
-
-/* Responsive Grid Classes */
-/* Adding a class of responsive-X to a row */
-/* will trigger the flex-direction to */
-/* change to column and add some margin */
-/* to any columns in the row for clearity */
-
-@include responsive-grid-break('.responsive-sm', $grid-responsive-sm-break);
-@include responsive-grid-break('.responsive-md', $grid-responsive-md-break);
-@include responsive-grid-break('.responsive-lg', $grid-responsive-lg-break);
diff --git a/static/sass/homepage/_index.scss b/static/sass/homepage/_index.scss
deleted file mode 100644
index a25514d..0000000
--- a/static/sass/homepage/_index.scss
+++ /dev/null
@@ -1,104 +0,0 @@
-@import "header-download", "banner-top","banner-center", "side-nav", "floor-header", "banner-top", "banner-bottom", "hot-brands", "fine-brands", "creative-life", "plus-star", "footer", "maybe-like",
-"icons-enter","trendsetter-collocation",
-"trend-topics","goods-category","hot-brands", "hot-category", "home-header";
-
-body {
-    font-family: helvetica,Arial,"黑体";
-    background: #f0f0f0;
-    -webkit-tap-highlight-color: rgba(0,0,0,0);
-}
-
-ol, ul {
-    list-style: none;
-}
-
-.hide {
-    display: none !important;
-}
-
-a {
-    text-decoration: none;
-}
-
-a:focus {
-    outline: none;
-}
-
-/**
- * 闭合浮动
- * @Doc: http://nicolasgallagher.com/micro-clearfix-hack/
- */
-.clearfix:before,
-.clearfix:after {
-    content: "";
-    display: table;
-}
-.clearfix:after {
-    clear: both; 
-}
-.clearfix { 
-    *zoom: 1; /* IE6-7 触发 hasLayout */
-} 
-
-/*
- * 去掉高亮
- */
-* { 
-    -webkit-tap-highlight-color: rgba(0,0,0,0);
-    -moz-tap-highlight-color: rgba(0,0,0,0);
-    tap-highlight-color: rgba(0,0,0,0);
-}
-
-/*
- * 字体图标
- */
-@font-face {font-family: 'iconfont';
-    src: font-url('iconfont.eot'); /* IE9*/
-    src: font-url('iconfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
-    font-url('iconfont.woff') format('woff'), /* chrome、firefox */
-    font-url('iconfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
-    font-url('iconfont.svg#iconfont') format('svg'); /* iOS 4.1- */
-}
-.iconfont {
-    font-family:"iconfont" !important;
-    font-size:16px;font-style:normal;
-    -webkit-font-smoothing: antialiased;
-    -webkit-text-stroke-width: 0.2px;
-    -moz-osx-font-smoothing: grayscale; 
-}
-
-.mobile-container{
-    width: 100%;
-    overflow: hidden;
-}
-.mobile-wrap {
-    position: relative;
-    z-index: 2;
-    background: #f0f0f0;
-    @include transition(transform .3s);
-}
-
-.mobile-wrap.menu-open {
-    @include transform(translateX(540rem / $pxConvertRem));
-    @include transition(transform .3s);
-}
-
-
-.overlay {
-    display: none;
-    position: absolute;
-    top: 0;
-    left: 0;
-    right: 0;
-    bottom: 0;
-    background: #000;
-    opacity: 0.3;
-    z-index: 99;
-}
-
-.overlay.show {
-    display: block;
-}
-.login-tip{
-    display: none;
-}
\ No newline at end of file
diff --git a/static/sass/index.scss b/static/sass/index.scss
index ec33ce4..b67f285 100644
--- a/static/sass/index.scss
+++ b/static/sass/index.scss
@@ -92,4 +92,4 @@ a {
     @include border-radius(10px);
 }
 
-@import "layout/header", "layout/footer", "good", "passport/index", "guang/index", "homepage/index", "category/index", "newsale/index";
\ No newline at end of file
+@import "layout/header", "layout/footer", "good", "passport/index", "guang/index", "home/index", "category/index", "product/index";
\ No newline at end of file
diff --git a/static/sass/newsale/_index.scss b/static/sass/newsale/_index.scss
deleted file mode 100644
index 1be7c07..0000000
--- a/static/sass/newsale/_index.scss
+++ /dev/null
@@ -1 +0,0 @@
-@import "new-arrival";
\ No newline at end of file
diff --git a/static/sass/newsale/_sale.scss b/static/sass/newsale/_sale.scss
deleted file mode 100644
index 1735b73..0000000
--- a/static/sass/newsale/_sale.scss
+++ /dev/null
@@ -1,20 +0,0 @@
-.sale-section {
-    background: #fff;
-
-    ul {
-        text-align: center;
-        padding: (15rem / $pxConvertRem) 0 (15rem / $pxConvertRem) (15rem / $pxConvertRem);
-    }
-
-    li {
-        float: left;
-        margin: (15rem / $pxConvertRem) (15rem / $pxConvertRem);
-        width: 275rem / $pxConvertRem;
-        height: 130rem / $pxConvertRem;
-
-        img {
-            width: 100%;
-            height: 100%;
-        }
-    }
-}
\ No newline at end of file
diff --git a/static/sass/product/_discount.scss b/static/sass/product/_discount.scss
new file mode 100644
index 0000000..43dc4c1
--- /dev/null
+++ b/static/sass/product/_discount.scss
@@ -0,0 +1,50 @@
+.discount-page {
+    background-color: #f0f0f0;
+
+     .swiper-container {
+        width: 100%;
+        height: 310rem / $pxConvertRem;
+
+        img {
+            height: 100%;
+            width: 100%;
+        }
+
+        .swiper-pagination {
+            bottom: 0;
+            left: 0;
+            width: 100%;
+        }
+
+        .swiper-pagination-bullet-active {
+            background: #fff;
+        }
+    }
+ 
+    .discount-nav {
+        width: 100%;
+        height: 60rem / $pxConvertRem;
+        padding: 10rem / $pxConvertRem 0;
+        background-color: #fff;
+    }
+
+    .discount-nav-item {
+        box-sizing: border-box;
+        float: left;
+        width: 25%;
+        height: 60rem / $pxConvertRem;
+        line-height: 60rem / $pxConvertRem;
+        text-align: center;
+        color: #ccc;
+        border-right: 1px solid #ccc;
+
+        &.focus {
+            color: #000;
+        }
+    }
+
+    .goods-list.hide {
+        display: none;
+    }
+ 
+}
diff --git a/static/sass/product/_index.scss b/static/sass/product/_index.scss
new file mode 100644
index 0000000..3313947
--- /dev/null
+++ b/static/sass/product/_index.scss
@@ -0,0 +1 @@
+@import "new-arrival", "discount";
\ No newline at end of file
diff --git a/static/sass/newsale/_new-arrival.scss b/static/sass/product/_new-arrival.scss
index ce031b2..32c0366 100644
--- a/static/sass/newsale/_new-arrival.scss
+++ b/static/sass/product/_new-arrival.scss
@@ -1,5 +1,25 @@
 .newarrival-page {
     background-color: #f0f0f0;
+
+     .swiper-container {
+        width: 100%;
+        height: 310rem / $pxConvertRem;
+
+        img {
+            height: 100%;
+            width: 100%;
+        }
+
+        .swiper-pagination {
+            bottom: 0;
+            left: 0;
+            width: 100%;
+        }
+
+        .swiper-pagination-bullet-active {
+            background: #fff;
+        }
+    }
  
     .newarrival-nav {
         width: 100%;
@@ -14,7 +34,6 @@
         width: 33.333333%;
         height: 60rem / $pxConvertRem;
         line-height: 60rem / $pxConvertRem;
-        font-size: 16px;
         text-align: center;
         color: #ccc;
         border-right: 1px solid #ccc;
@@ -23,5 +42,9 @@
             color: #000;
         }
     }
+
+    .goods-list.hide {
+        display: none;
+    }
  
 }
diff --git a/template/m.yohobuy.com/actions/index/boys/index.phtml b/template/m.yohobuy.com/actions/index/boys/index.phtml
index 03b3b99..ec49ab5 100644
--- a/template/m.yohobuy.com/actions/index/boys/index.phtml
+++ b/template/m.yohobuy.com/actions/index/boys/index.phtml
@@ -1,23 +1,23 @@
 {{> layout/header}}
-    <div class="mobile-wrap boys-wrap">
+    <div class="mobile-wrap boys-wrap yoho-page">
 
         {{# headerDownload}}
-            {{> common/header_download}}
+            {{> home/header_download}}
         {{/ headerDownload}}
 
          {{! 首页header}}
         {{# homeHeader}}
-            {{> common/home_header}}
+            {{> home/home_header}}
         {{/ homeHeader}}
 
-        {{> common/content}}
+        {{> home/content}}
         
         {{! 商品列表}}
         {{# twoColumnGoods}}
-            {{> common/two_column_goods}}
+            {{> home/two_column_goods}}
         {{/ twoColumnGoods}}
 
         <div class="overlay"></div>
     </div>
-    
+    {{> home/side_nav}}
 {{> layout/footer}}
\ No newline at end of file
diff --git a/template/m.yohobuy.com/actions/index/girls/index.phtml b/template/m.yohobuy.com/actions/index/girls/index.phtml
index b3d62a7..9fc94c9 100644
--- a/template/m.yohobuy.com/actions/index/girls/index.phtml
+++ b/template/m.yohobuy.com/actions/index/girls/index.phtml
@@ -1,22 +1,22 @@
 {{> layout/header}}
-    <div class="mobile-wrap girls-wrap">
+    <div class="mobile-wrap girls-wrap yoho-page">
 
         {{# headerDownload}}
-            {{> common/header_download}}
+            {{> home/header_download}}
         {{/ headerDownload}}
 
          {{! 首页header}}
         {{# homeHeader}}
-            {{> common/home_header}}
+            {{> home/home_header}}
         {{/ homeHeader}}
 
-        {{> common/content}}
+        {{> home/content}}
  
         {{! 可能喜欢}}
         {{# maybeLike}}
-            {{> common/maybe_like}}
+            {{> home/maybe_like}}
         {{/ maybeLike}}
         <div class="overlay"></div>
     </div>
-     {{> common/side_nav}}
+     {{> home/side_nav}}
 {{> layout/footer}}
\ No newline at end of file
diff --git a/template/m.yohobuy.com/actions/index/kids/index.phtml b/template/m.yohobuy.com/actions/index/kids/index.phtml
index 663f4a9..5aed8d3 100644
--- a/template/m.yohobuy.com/actions/index/kids/index.phtml
+++ b/template/m.yohobuy.com/actions/index/kids/index.phtml
@@ -1,29 +1,29 @@
 {{> layout/header}}
  
-    <div class="mobile-wrap kids-wrap">
+    <div class="mobile-wrap kids-wrap yoho-page">
         {{! app下载}}
         {{# headerDownload}}
-            {{> common/header_download}}
+            {{> home/header_download}}
         {{/ headerDownload}}
         
         {{! 首页header}}
         {{# homeHeader}}
-            {{> common/home_header}}
+            {{> home/home_header}}
         {{/ homeHeader}}
         
-        {{> common/content}}
+        {{> home/content}}
 
         {{! 商品列表}}
         {{# twoColumnGoods}}
-            {{> common/two_column_goods}}
+            {{> home/two_column_goods}}
         {{/ twoColumnGoods}}
         
         {{! 底部banner}}
         {{# bannerBottom}}
-            {{> common/banner_bottom}}
+            {{> home/banner_bottom}}
         {{/ bannerBottom}}
  
         <div class="overlay"></div>
     </div>
-  
+    {{> home/side_nav}}
 {{> layout/footer}}
\ No newline at end of file
diff --git a/template/m.yohobuy.com/actions/index/lifestyle/index.phtml b/template/m.yohobuy.com/actions/index/lifestyle/index.phtml
index 0315c18..7c9d822 100644
--- a/template/m.yohobuy.com/actions/index/lifestyle/index.phtml
+++ b/template/m.yohobuy.com/actions/index/lifestyle/index.phtml
@@ -1,27 +1,27 @@
 {{> layout/header}}
-     <div class="mobile-wrap lifestyle-wrap">
+     <div class="mobile-wrap lifestyle-wrap yoho-page">
         {{! app下载}}
         {{# headerDownload}}
-            {{> common/header_download}}
+            {{> home/header_download}}
         {{/ headerDownload}}
         
         {{! 首页header}}
         {{# homeHeader}}
-            {{> common/home_header}}
+            {{> home/home_header}}
         {{/ homeHeader}}
 
-        {{> common/content}}
+        {{> home/content}}
  
         {{! 商品列表}}
         {{# twoColumnGoods}}
-            {{> common/two_column_goods}}
+            {{> home/two_column_goods}}
         {{/ twoColumnGoods}}
         
         {{! 底部banner}}
         {{# bannerBottom}}
-            {{> common/banner_bottom}}
+            {{> home/banner_bottom}}
         {{/ bannerBottom}}
         <div class="overlay"></div>
     </div>
-    
+    {{> home/side_nav}}
 {{> layout/footer}}
\ No newline at end of file
diff --git a/template/m.yohobuy.com/actions/product/newsale/new.phtml b/template/m.yohobuy.com/actions/product/newsale/new.phtml
index 6c227d6..a732c26 100644
--- a/template/m.yohobuy.com/actions/product/newsale/new.phtml
+++ b/template/m.yohobuy.com/actions/product/newsale/new.phtml
@@ -1,21 +1,21 @@
 {{>layout/header}}
 <div class="newarrival-page yoho-page">
-       {{> newsale/header_banner}}
+        {{# headerBanner}}
+        <div class="banner-center">          
+            <a href="{{url}}">
+                <img class="img" src="{{img}}" alt="">
+            </a>
+        </div>
+         {{/ headerBanner}}
  
          <ul id="newarrival-nav" class="newarrival-nav clearfix">
             {{# tabs}}
                  <li class="newarrival-nav-item {{#focus}}focus{{/focus}}">{{title}}</li>
             {{/ tabs}}
         </ul>
-  
-       <div id="newarrival-list">
-            {{# goodsContainer}}
-                <div class="newarrival-goods-list {{^show}}hide{{/show}}">
-                    {{# goods}}
-                        {{> good}}
-                    {{/ goods}}
-                </div>
-            {{/ goodsContainer}}
+   
+        <div id="newarrival-goods-list">
+            {{> product/goods_container}}
         </div>
 
 </div>
diff --git a/template/m.yohobuy.com/actions/product/newsale/product.phtml b/template/m.yohobuy.com/actions/product/newsale/product.phtml
new file mode 100644
index 0000000..8e5e698
--- /dev/null
+++ b/template/m.yohobuy.com/actions/product/newsale/product.phtml
@@ -0,0 +1,3 @@
+{{# goods}}
+    {{> good}}
+{{/ goods}}
\ No newline at end of file
diff --git a/template/m.yohobuy.com/actions/product/newsale/sale.phtml b/template/m.yohobuy.com/actions/product/newsale/sale.phtml
index 5c3bb59..f89a33a 100644
--- a/template/m.yohobuy.com/actions/product/newsale/sale.phtml
+++ b/template/m.yohobuy.com/actions/product/newsale/sale.phtml
@@ -1,7 +1,18 @@
 {{>layout/header}}
+<div class="discount-page yoho-page">
+         
+         <ul id="discount-nav" class="discount-nav clearfix">
+            {{# tabs}}
+                 <li class="discount-nav-item {{#focus}}focus{{/focus}}">{{title}}</li>
+            {{/ tabs}}
+        </ul>
+  
+        <div id="discount-goods-list">
+            {{> product/goods_container}}
+        </div>
 
- 
-
+</div>
 {{>layout/footer}}
 
- 
\ No newline at end of file
+
+
diff --git a/template/m.yohobuy.com/partials/common/banner.phtml b/template/m.yohobuy.com/partials/home/banner.phtml
index 74b7e6c..74b7e6c 100644
--- a/template/m.yohobuy.com/partials/common/banner.phtml
+++ b/template/m.yohobuy.com/partials/home/banner.phtml
diff --git a/template/m.yohobuy.com/partials/home/banner_bottom.phtml b/template/m.yohobuy.com/partials/home/banner_bottom.phtml
new file mode 100644
index 0000000..a299aa2
--- /dev/null
+++ b/template/m.yohobuy.com/partials/home/banner_bottom.phtml
@@ -0,0 +1,5 @@
+<div class="banner-bottom">
+    <a href="{{url}}">
+        <img class="lazy" data-original="{{img}}" alt="">
+    </a>
+</div>
\ No newline at end of file
diff --git a/template/m.yohobuy.com/partials/common/banner_top.phtml b/template/m.yohobuy.com/partials/home/banner_top.phtml
index 31112f3..31112f3 100644
--- a/template/m.yohobuy.com/partials/common/banner_top.phtml
+++ b/template/m.yohobuy.com/partials/home/banner_top.phtml
diff --git a/template/m.yohobuy.com/partials/common/content.phtml b/template/m.yohobuy.com/partials/home/content.phtml
index bb2de2b..8c1f386 100644
--- a/template/m.yohobuy.com/partials/common/content.phtml
+++ b/template/m.yohobuy.com/partials/home/content.phtml
@@ -2,63 +2,63 @@
         {{# content}}
                     {{! 头部banner}}
                     {{# bannerTop}}
-                        {{> common/banner_top}}
+                        {{> home/banner_top}}
                     {{/ bannerTop}}
 
                     {{! 图标入口}}
                     {{# iconsEnter}}
-                        {{> common/icons_enter}}
+                        {{> home/icons_enter}}
                     {{/ iconsEnter}}
  
                     {{! 中间banner}}
                     {{# banner}}
-                        {{> common/banner}}
+                        {{> home/banner}}
                     {{/ banner}}
                
                     {{! 热门品类}}
                     {{# hotCategory}}
-                        {{> girls/hot_category}}
+                        {{> home/hot_category}}
                     {{/ hotCategory}}
 
                     {{! 热门品牌}}
                     {{# hotBrands}}
-                        {{> common/hot_brands_list}}
+                        {{> home/hot_brands_list}}
                     {{/ hotBrands}}
 
                     {{! 热门品牌可滑动}}
                     {{# hotBrandsScroll}}
-                        {{> common/hot_brands_swipe}}
+                        {{> home/hot_brands_swipe}}
                     {{/ hotBrandsScroll}}
 
                     {{! 潮人搭配}}
                     {{# trendColloaction}}
-                        {{> common/trendsetter_collocation}}
+                        {{> home/trendsetter_collocation}}
                     {{/trendColloaction}}
 
                     {{! 潮流话题}}
                     {{# trendTopics}}
-                        {{> common/trend_topics}}
+                        {{> home/trend_topics}}
                     {{/ trendTopics}}
                     
                     {{! 潮流时装/经典裤裙/时尚靴履/潮人配饰/潮流上装}}
                     {{# goodsCategory}}
-                        {{> common/goods_category}}
+                        {{> home/goods_category}}
                     {{/ goodsCategory}}
 
                     {{! 新入住品牌/品味生活/创意生活}}
                     {{# creativeLife}}
-                       {{> common/creative_life}}
+                       {{> home/creative_life}}
                     {{/ creativeLife}}
 
                     {{! PLUS}}
                     {{# plusStar}}
-                        {{> common/plus_star}}
+                        {{> home/plus_star}}
                     {{/ plusStar}}
 
                  
                     {{! 可能喜欢}}
                     {{# maybeLike}}
-                        {{> common/maybe_like}}
+                        {{> home/maybe_like}}
                     {{/ maybeLike}}
                     
         {{/ content}}
\ No newline at end of file
diff --git a/template/m.yohobuy.com/partials/common/creative_life.phtml b/template/m.yohobuy.com/partials/home/creative_life.phtml
index e37fe00..8070793 100644
--- a/template/m.yohobuy.com/partials/common/creative_life.phtml
+++ b/template/m.yohobuy.com/partials/home/creative_life.phtml
@@ -1,4 +1,4 @@
-{{> common/floor_header_more}}
+{{> home/floor_header_more}}
 <div class="creative-life">
     {{# banner}}
         <a class="banner" href="{{url}}">
diff --git a/template/m.yohobuy.com/partials/common/fine_brands.phtml b/template/m.yohobuy.com/partials/home/fine_brands.phtml
index 79182db..6389a68 100644
--- a/template/m.yohobuy.com/partials/common/fine_brands.phtml
+++ b/template/m.yohobuy.com/partials/home/fine_brands.phtml
@@ -1,4 +1,4 @@
-{{> common/floor_header}}
+{{> home/floor_header}}
 <ul class="fine-brands clearfix">
     {{# brands}}    
         <li class="brand">
diff --git a/template/m.yohobuy.com/partials/common/floor_header.phtml b/template/m.yohobuy.com/partials/home/floor_header.phtml
index a8dae0c..a8dae0c 100644
--- a/template/m.yohobuy.com/partials/common/floor_header.phtml
+++ b/template/m.yohobuy.com/partials/home/floor_header.phtml
diff --git a/template/m.yohobuy.com/partials/common/floor_header_more.phtml b/template/m.yohobuy.com/partials/home/floor_header_more.phtml
index 82ee94b..82ee94b 100644
--- a/template/m.yohobuy.com/partials/common/floor_header_more.phtml
+++ b/template/m.yohobuy.com/partials/home/floor_header_more.phtml
diff --git a/template/m.yohobuy.com/partials/common/goods_category.phtml b/template/m.yohobuy.com/partials/home/goods_category.phtml
index 0b13638..14cefe7 100644
--- a/template/m.yohobuy.com/partials/common/goods_category.phtml
+++ b/template/m.yohobuy.com/partials/home/goods_category.phtml
@@ -1,4 +1,4 @@
-{{> common/floor_header_more}}
+{{> home/floor_header_more}}
 <div class="goods-category">
 	{{# big_image}}
 	<div class="category-swiper">
diff --git a/template/m.yohobuy.com/partials/common/header_download.phtml b/template/m.yohobuy.com/partials/home/header_download.phtml
index 205b85d..205b85d 100644
--- a/template/m.yohobuy.com/partials/common/header_download.phtml
+++ b/template/m.yohobuy.com/partials/home/header_download.phtml
diff --git a/template/m.yohobuy.com/partials/common/home_header.phtml b/template/m.yohobuy.com/partials/home/home_header.phtml
index 3d94c98..3d94c98 100644
--- a/template/m.yohobuy.com/partials/common/home_header.phtml
+++ b/template/m.yohobuy.com/partials/home/home_header.phtml
diff --git a/template/m.yohobuy.com/partials/common/hot_brands_list.phtml b/template/m.yohobuy.com/partials/home/hot_brands_list.phtml
index 26c613c..8f711cf 100644
--- a/template/m.yohobuy.com/partials/common/hot_brands_list.phtml
+++ b/template/m.yohobuy.com/partials/home/hot_brands_list.phtml
@@ -1,5 +1,5 @@
 <ul class="hot-brands clearfix">
-{{> common/floor_header}}
+{{> home/floor_header}}
     {{# list}}    
         <li class="brand">
             <a href="{{url}}">
diff --git a/template/m.yohobuy.com/partials/common/hot_brands_swipe.phtml b/template/m.yohobuy.com/partials/home/hot_brands_swipe.phtml
index 4b436bd..cf77462 100644
--- a/template/m.yohobuy.com/partials/common/hot_brands_swipe.phtml
+++ b/template/m.yohobuy.com/partials/home/hot_brands_swipe.phtml
@@ -1,5 +1,5 @@
 <div class="hot-brands">
-    {{> common/floor_header}}
+    {{> home/floor_header}}
     <div class="brands-swiper">
         <ul class="brands-list swiper-wrapper clearfix">
             {{# list}}
diff --git a/template/m.yohobuy.com/partials/common/hot_category.phtml b/template/m.yohobuy.com/partials/home/hot_category.phtml
index d3bc898..845a9b5 100644
--- a/template/m.yohobuy.com/partials/common/hot_category.phtml
+++ b/template/m.yohobuy.com/partials/home/hot_category.phtml
@@ -1,6 +1,6 @@
 <div class="hot-category">
     
-    {{> common/floor_header}}
+    {{> home/floor_header}}
    
     <ul class="category-list clearfix">
         {{# list}}
diff --git a/template/m.yohobuy.com/partials/common/icons_enter.phtml b/template/m.yohobuy.com/partials/home/icons_enter.phtml
index daa0013..daa0013 100644
--- a/template/m.yohobuy.com/partials/common/icons_enter.phtml
+++ b/template/m.yohobuy.com/partials/home/icons_enter.phtml
diff --git a/template/m.yohobuy.com/partials/common/maybe_like.phtml b/template/m.yohobuy.com/partials/home/maybe_like.phtml
index 1465f50..1465f50 100644
--- a/template/m.yohobuy.com/partials/common/maybe_like.phtml
+++ b/template/m.yohobuy.com/partials/home/maybe_like.phtml
diff --git a/template/m.yohobuy.com/partials/common/plus_star.phtml b/template/m.yohobuy.com/partials/home/plus_star.phtml
index 9bba3a8..28de0d5 100644
--- a/template/m.yohobuy.com/partials/common/plus_star.phtml
+++ b/template/m.yohobuy.com/partials/home/plus_star.phtml
@@ -1,6 +1,6 @@
 
 <div class="plus-star">
-    {{> common/floor_header}} 
+    {{> home/floor_header}} 
     <a href="{{url}}">
         <img class="lazy" data-original="{{img}}">
     </a>
diff --git a/template/m.yohobuy.com/partials/common/search.phtml b/template/m.yohobuy.com/partials/home/search.phtml
index b3e6def..b3e6def 100644
--- a/template/m.yohobuy.com/partials/common/search.phtml
+++ b/template/m.yohobuy.com/partials/home/search.phtml
diff --git a/template/m.yohobuy.com/partials/common/side_nav.phtml b/template/m.yohobuy.com/partials/home/side_nav.phtml
index 66ca5d2..66ca5d2 100644
--- a/template/m.yohobuy.com/partials/common/side_nav.phtml
+++ b/template/m.yohobuy.com/partials/home/side_nav.phtml
diff --git a/template/m.yohobuy.com/partials/common/trend_topics.phtml b/template/m.yohobuy.com/partials/home/trend_topics.phtml
index 5957c55..419fd2b 100644
--- a/template/m.yohobuy.com/partials/common/trend_topics.phtml
+++ b/template/m.yohobuy.com/partials/home/trend_topics.phtml
@@ -1,5 +1,5 @@
 <div class="trend-topic-wrapper">
-	{{> common/floor_header_more}}
+	{{> home/floor_header_more}}
 	<div class="trend-topic-content">
 		<div class="trend-topic-swiper">
 			<ul class="swiper-wrapper">
diff --git a/template/m.yohobuy.com/partials/common/trendsetter_collocation.phtml b/template/m.yohobuy.com/partials/home/trendsetter_collocation.phtml
index 7c61c07..4f8cb74 100644
--- a/template/m.yohobuy.com/partials/common/trendsetter_collocation.phtml
+++ b/template/m.yohobuy.com/partials/home/trendsetter_collocation.phtml
@@ -1,5 +1,5 @@
 <div class="trend-coll-wrapper">
-	{{> common/floor_header_more}}
+	{{> home/floor_header_more}}
 	<div class="trend-coll-content clearfix">
 		{{# article}}
 		<div class="lspan">
diff --git a/template/m.yohobuy.com/partials/common/two_column_goods.phtml b/template/m.yohobuy.com/partials/home/two_column_goods.phtml
index bc0758c..bc0758c 100644
--- a/template/m.yohobuy.com/partials/common/two_column_goods.phtml
+++ b/template/m.yohobuy.com/partials/home/two_column_goods.phtml
diff --git a/template/m.yohobuy.com/partials/layout/use.phtml b/template/m.yohobuy.com/partials/layout/use.phtml
index 9fd20cb..e974f14 100644
--- a/template/m.yohobuy.com/partials/layout/use.phtml
+++ b/template/m.yohobuy.com/partials/layout/use.phtml
@@ -85,22 +85,22 @@
 {{!-- 首页 --}}
 {{#if grilsHomePage}}
     <script>
-        seajs.use('js/homePage/home');
+        seajs.use('js/home/home');
     </script>
 {{/if}}
 {{#if boysHomePage}}
     <script>
-        seajs.use('js/homePage/home');
+        seajs.use('js/home/home');
     </script>
 {{/if}}
 {{#if kidsHomePage}}
     <script>
-        seajs.use('js/homePage/home');
+        seajs.use('js/home/home');
     </script>
 {{/if}}
 {{#if lifestyleHomePage}}
     <script>
-        seajs.use('js/homePage/home');
+        seajs.use('js/home/home');
     </script>
 {{/if}}
 
diff --git a/template/m.yohobuy.com/partials/newsale/header_banner.phtml b/template/m.yohobuy.com/partials/newsale/header_banner.phtml
deleted file mode 100644
index 90672bb..0000000
--- a/template/m.yohobuy.com/partials/newsale/header_banner.phtml
+++ /dev/null
@@ -1,16 +0,0 @@
-{{# headerBanner}}
-<div class="header-banner swiper-container">
-    <div class="swiper-wrapper">
-        {{# list}}
-        <div class="swiper-slide">
-            <a href="{{url}}">
-                <img src="{{img}}">
-                {{# desc}}
-                <span class="desc">{{../desc}}</span>
-                {{/ desc}}
-            </a>
-        </div>
-        {{/ list}}
-    </div>
-</div>
-{{/ headerBanner}}
\ No newline at end of file
diff --git a/template/m.yohobuy.com/partials/product/goods_container.phtml b/template/m.yohobuy.com/partials/product/goods_container.phtml
new file mode 100644
index 0000000..9eb0bef
--- /dev/null
+++ b/template/m.yohobuy.com/partials/product/goods_container.phtml
@@ -0,0 +1,7 @@
+{{# goodsContainer}}
+    <div class="goods-list {{^show}}hide{{/show}}">
+        {{# goods}}
+            {{> good}}
+        {{/ goods}}
+    </div>
+{{/ goodsContainer}}
\ No newline at end of file
diff --git a/template/m.yohobuy.com/partials/newsale/header.phtml b/template/m.yohobuy.com/partials/product/header.phtml
index 0ef3c96..0ef3c96 100644
--- a/template/m.yohobuy.com/partials/newsale/header.phtml
+++ b/template/m.yohobuy.com/partials/product/header.phtml
diff --git a/yohobuy/m.yohobuy.com/application/controllers/Index.php b/yohobuy/m.yohobuy.com/application/controllers/Index.php
index 132e4f5..da42704 100644
--- a/yohobuy/m.yohobuy.com/application/controllers/Index.php
+++ b/yohobuy/m.yohobuy.com/application/controllers/Index.php
@@ -14,22 +14,34 @@ class IndexController extends AbstractAction
      */
     public function indexAction()
     {
-        // 启动滚动图
-        $startBannerData = IndexData::getBannerStart();
-        $startBanner = array();
-        if ($startBannerData['code'] == 200) {
-            foreach ($startBannerData['data'] as $single) {
-                $startBanner = $single['data'];
-            }
-        }
-        // 用户个人信息
-        $userProfile = IndexData::getUserProfile(0);
 
-        /* echo '<pre>';
-          var_dump($homeChannels);exit; */
+        $data = array(
+            'channels' => array(
+                array(
+                    'name' => '男生',
+                    'name_en' => 'BOYS',
+                    'url' => '/boys'
+                ),
+                array(
+                    'name' => '男生',
+                    'name_en' => 'BOYS',
+                    'url' => '/boys'
+                ),
+                array(
+                    'name' => '男生',
+                    'name_en' => 'BOYS',
+                    'url' => '/boys'
+                ),
+                array(
+                    'name' => '男生',
+                    'name_en' => 'BOYS',
+                    'url' => '/boys'
+                ),
+            )
+        );
 
         $this->_view->assign('title', 'YOHO!有货');
-        $this->_view->display('index', compact('startBanner', 'userProfile'));
+        $this->_view->display('index', $data);
     }
 
 }
diff --git a/yohobuy/m.yohobuy.com/application/modules/Passport/controllers/Back.php b/yohobuy/m.yohobuy.com/application/modules/Passport/controllers/Back.php
index 84ef4b4..3325ded 100644
--- a/yohobuy/m.yohobuy.com/application/modules/Passport/controllers/Back.php
+++ b/yohobuy/m.yohobuy.com/application/modules/Passport/controllers/Back.php
@@ -68,8 +68,8 @@ class BackController extends AbstractAction
         
         $email = $this->get('email', '');
         // 获取到邮箱域名
-        $pattern = "/^([0-9A-Za-z\\-_\\.]+)@([0-9a-z]+\\.[a-z]{2,3}(\\.[a-z]{2})?)$/i";
-        $domain_name = 'http://mail.'.preg_replace( $pattern ,"$2", $email );
+        list($name, $domain) = explode('@', $email);
+        $domain_name = 'http://' . (($domain == 'gmail.com') ? 'mail.google.com' : 'mail.' . $domain);
 
         $data = array(
             'backUrl' => 'emailback.html',
@@ -97,7 +97,14 @@ class BackController extends AbstractAction
 
             $data = BackData::modifyPasswordByEmail($pwd, $code);
 
-            $this->echoJson($data);// 前端不需要判断结果
+            $result = array('code'=>200);
+            if(strpos($data, 'history.back') !== false)
+            {
+                $result['code'] = 400;
+                $result['message'] = '修改失败';
+            }
+
+            $this->echoJson($result);// 前端不需要判断结果
         }
     }
 
diff --git a/yohobuy/m.yohobuy.com/application/modules/Passport/controllers/Login.php b/yohobuy/m.yohobuy.com/application/modules/Passport/controllers/Login.php
index f40e447..2836551 100644
--- a/yohobuy/m.yohobuy.com/application/modules/Passport/controllers/Login.php
+++ b/yohobuy/m.yohobuy.com/application/modules/Passport/controllers/Login.php
@@ -29,8 +29,8 @@ class LoginController extends AbstractAction
             'weiboLoginUrl' => '/passport/login/sina', // 微博登录的URL链接
             'qqLoginUrl' => '/passport/login/qq', // 腾讯QQ登录的URL链接
             'interationalUrl' => '/login.html', // 国际号登录的URL链接
-            'phoneRetriveUrl' => '/phoneback.html', // 通过手机号找回密码的URL链接
-            'emailRetriveUrl' => '/emailback.html', // 通过邮箱找回密码的URL链接
+            'phoneRetriveUrl' => '/passport/back/mobile', // 通过手机号找回密码的URL链接
+            'emailRetriveUrl' => '/passport/back/email', // 通过邮箱找回密码的URL链接
         );
 
         // 生成HTML(signin.html)
diff --git a/yohobuy/m.yohobuy.com/application/modules/Product/controllers/Newsale.php b/yohobuy/m.yohobuy.com/application/modules/Product/controllers/Newsale.php
index cd41e2b..4c0bb5a 100644
--- a/yohobuy/m.yohobuy.com/application/modules/Product/controllers/Newsale.php
+++ b/yohobuy/m.yohobuy.com/application/modules/Product/controllers/Newsale.php
@@ -2,345 +2,364 @@
 
 use Action\AbstractAction;
 use LibModels\wap\Product\NewsaleData as Newsale;
-use Plugin\Helpers;
+use Plugin\DataProcess\NewSaleProcess;
 /**
  * 新品到着
  */
 class NewsaleController extends AbstractAction
 {
-    public function indexAction()
-    {
-        /*$this->_view->assign('title', '新品到着');
+	public function indexAction()
+	{
 
-        // 新品到着顶部焦点图
-        $focusData = Newsale::getNewsaleFocus('a7989369aa86681c678bc40f171b8f1d');
-        // 处理返回的数据
-        $focus = array();
-        if($focusData['code'] == 200)
-        {
-            foreach ($focusData['data'] as $single)
-            {
-                foreach ($single['data'] as $val) {
-                    $val['src'] = Helpers::getImageUrl($val['src'], 375, 667, 1);
-                    $focus[] = $val;
-                }
-            }
-        }
+		$data = array(
+			'newArrival' => true,             
+			'header' => array(       
+				'title'  =>  '新品到着' 
+			)
+		);
 
-        // 批量获取新品到着商品数据
-        $products = Newsale::getNewProducts('1,3', 1, 60);
-        var_dump($focus);
+		// 新品到着顶部焦点图
+		$focusData = Newsale::getNewsaleFocus('a7989369aa86681c678bc40f171b8f1d');
+		// 处理返回的数据
+		$focus = array();
+		if($focusData['code'] == 200)
+		{
+			$focus = $focusData['data'];
+		}
 
-        $this->_view->display('new', compact('focus', 'products'));*/
- 
-        $data = array(
-            'headerBanner' => array(
-                 'list'  => array(
-                      array(
-                          'url' => '',
-                          'img' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
-                      )
-                  )
-             ),     
-             'tabs'  => array(
-                      array(
-                          'title' => '10月15日',
-                          'focus' => true
-                      ),
-                      array(
-                          'title' => '本周上新'
-                      ),
-                      array(
-                          'title' => '销量'
-                      )
-             ),
-             'goodsContainer'  => array(
-                       array(
-                           'show' => 'true',
-                           'goods'  => array(
-                                array(
-                                    'id' => '',
-                                    'thumb' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
-                                    'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
-                                    'isLike'  => false,
-                                    'price'  => 1268,
-                                    'salePrice'  => 589,
-                                    'isSale'  => true,
-                                    'isFew'  => true,
-                                    'isNew'  => false,
-                                    'url'  => ''
-                                ),
-                                array(
-                                    'id' => '',
-                                    'thumb' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
-                                    'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
-                                    'isLike'  => false,
-                                    'price'  => 1268,
-                                    'salePrice'  => 589,
-                                    'isSale'  => true,
-                                    'isFew'  => true,
-                                    'isNew'  => false,
-                                    'url'  => ''
-                                ),
-                                array(
-                                    'id' => '',
-                                    'thumb' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
-                                    'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
-                                    'isLike'  => false,
-                                    'price'  => 1268,
-                                    'salePrice'  => 589,
-                                    'isSale'  => true,
-                                    'isFew'  => true,
-                                    'isNew'  => false,
-                                    'url'  => ''
-                                ),
-                                array(
-                                    'id' => '',
-                                    'thumb' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
-                                    'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
-                                    'isLike'  => false,
-                                    'price'  => 1268,
-                                    'salePrice'  => 589,
-                                    'isSale'  => true,
-                                    'isFew'  => true,
-                                    'isNew'  => false,
-                                    'url'  => ''
-                                )
-                      
-                            )
-                       ),
-                       array(
-                            'goods'  => array(
-                                  array(
-                                      'id' => '',
-                                      'thumb' => 'http://img02.yohoboys.com/staticimg/2015/06/30/21/02912cd7f0b2c67939404c71ef00e3f513.jpg',
-                                      'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
-                                      'isLike'  => false,
-                                      'price'  => 1268,
-                                      'salePrice'  => 589,
-                                      'isSale'  => true,
-                                      'isFew'  => true,
-                                      'isNew'  => false,
-                                      'url'  => ''
-                                  ),
-                                  array(
-                                      'id' => '',
-                                      'thumb' => 'http://img02.yohoboys.com/staticimg/2015/06/30/21/02912cd7f0b2c67939404c71ef00e3f513.jpg',
-                                      'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
-                                      'isLike'  => false,
-                                      'price'  => 1268,
-                                      'salePrice'  => 589,
-                                      'isSale'  => true,
-                                      'isFew'  => true,
-                                      'isNew'  => false,
-                                      'url'  => ''
-                                  ),
-                                  array(
-                                      'id' => '',
-                                      'thumb' => 'http://img02.yohoboys.com/staticimg/2015/06/30/21/02912cd7f0b2c67939404c71ef00e3f513.jpg',
-                                      'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
-                                      'isLike'  => false,
-                                      'price'  => 1268,
-                                      'salePrice'  => 589,
-                                      'isSale'  => true,
-                                      'isFew'  => true,
-                                      'isNew'  => false,
-                                      'url'  => ''
-                                  ),
-                                  array(
-                                      'id' => '',
-                                      'thumb' => 'http://img02.yohoboys.com/staticimg/2015/06/30/21/02912cd7f0b2c67939404c71ef00e3f513.jpg',
-                                      'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
-                                      'isLike'  => false,
-                                      'price'  => 1268,
-                                      'salePrice'  => 589,
-                                      'isSale'  => true,
-                                      'isFew'  => true,
-                                      'isNew'  => false,
-                                      'url'  => ''
-                                  )
-                              
-                              )
-                           
-                       ),
-                       array(
-                            'goods'  => array(
-                                  array(
-                                      'id' => '',
-                                      'thumb' => 'http://img11.static.yhbimg.com/yhb-img01/2015/09/17/09/015e14c53a41c7adf0bd039f6493b5a700.jpg?imageView/2/w/140/h/140',
-                                      'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
-                                      'isLike'  => false,
-                                      'price'  => 1268,
-                                      'salePrice'  => 589,
-                                      'isSale'  => true,
-                                      'isFew'  => true,
-                                      'isNew'  => false,
-                                      'url'  => ''
-                                  ),
-                                  array(
-                                      'id' => '',
-                                      'thumb' => 'http://img11.static.yhbimg.com/yhb-img01/2015/09/17/09/015e14c53a41c7adf0bd039f6493b5a700.jpg?imageView/2/w/140/h/140',
-                                      'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
-                                      'isLike'  => false,
-                                      'price'  => 1268,
-                                      'salePrice'  => 589,
-                                      'isSale'  => true,
-                                      'isFew'  => true,
-                                      'isNew'  => false,
-                                      'url'  => ''
-                                  ),
-                                  array(
-                                      'id' => '',
-                                      'thumb' => 'http://img11.static.yhbimg.com/yhb-img01/2015/09/17/09/015e14c53a41c7adf0bd039f6493b5a700.jpg?imageView/2/w/140/h/140',
-                                      'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
-                                      'isLike'  => false,
-                                      'price'  => 1268,
-                                      'salePrice'  => 589,
-                                      'isSale'  => true,
-                                      'isFew'  => true,
-                                      'isNew'  => false,
-                                      'url'  => ''
-                                  ),
-                                  array(
-                                      'id' => '',
-                                      'thumb' => 'http://img11.static.yhbimg.com/yhb-img01/2015/09/17/09/015e14c53a41c7adf0bd039f6493b5a700.jpg?imageView/2/w/140/h/140',
-                                      'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
-                                      'isLike'  => false,
-                                      'price'  => 1268,
-                                      'salePrice'  => 589,
-                                      'isSale'  => true,
-                                      'isFew'  => true,
-                                      'isNew'  => false,
-                                      'url'  => ''
-                                  )
-                              
-                              )
-                           
-                       
-                  )
- 
-             )      
-        );
+		// 批量获取新品到着商品数据
+		$products = Newsale::getNewProducts('1,3', 1, 60);
+		// 添加商品数据
+		$data += NewSaleProcess::newSaleData($focus, $products);
 
-        $this->_view->assign('title', '新品到着');
-        $this->_view->display('new', $data);
-    }
+		/*echo '<pre>';
+		print_r($data);exit;*/
 
+		/*$data = array(
+				'headerBanner' => array(
+						 'list'  => array(
+									array(
+											'url' => '',
+											'img' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
+									)
+							)
+				 ),     
+				 'tabs'  => array(
+									array(
+											'title' => '10月15日',
+											'focus' => true
+									),
+									array(
+											'title' => '本周上新'
+									),
+									array(
+											'title' => '销量'
+									)
+				 ),
+				 'goodsContainer'  => array(
+									 array(
+											 'show' => 'true',
+											 'goods'  => array(
+														array(
+																'id' => '',
+																'thumb' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
+																'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
+																'isLike'  => false,
+																'price'  => 1268,
+																'salePrice'  => 589,
+																'isSale'  => true,
+																'isFew'  => true,
+																'isNew'  => false,
+																'url'  => ''
+														),
+														array(
+																'id' => '',
+																'thumb' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
+																'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
+																'isLike'  => false,
+																'price'  => 1268,
+																'salePrice'  => 589,
+																'isSale'  => true,
+																'isFew'  => true,
+																'isNew'  => false,
+																'url'  => ''
+														),
+														array(
+																'id' => '',
+																'thumb' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
+																'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
+																'isLike'  => false,
+																'price'  => 1268,
+																'salePrice'  => 589,
+																'isSale'  => true,
+																'isFew'  => true,
+																'isNew'  => false,
+																'url'  => ''
+														),
+														array(
+																'id' => '',
+																'thumb' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
+																'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
+																'isLike'  => false,
+																'price'  => 1268,
+																'salePrice'  => 589,
+																'isSale'  => true,
+																'isFew'  => true,
+																'isNew'  => false,
+																'url'  => ''
+														)
+									
+												)
+									 ),
+									 array(
+												'goods'  => array(
+															array(
+																	'id' => '',
+																	'thumb' => 'http://img02.yohoboys.com/staticimg/2015/06/30/21/02912cd7f0b2c67939404c71ef00e3f513.jpg',
+																	'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
+																	'isLike'  => false,
+																	'price'  => 1268,
+																	'salePrice'  => 589,
+																	'isSale'  => true,
+																	'isFew'  => true,
+																	'isNew'  => false,
+																	'url'  => ''
+															),
+															array(
+																	'id' => '',
+																	'thumb' => 'http://img02.yohoboys.com/staticimg/2015/06/30/21/02912cd7f0b2c67939404c71ef00e3f513.jpg',
+																	'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
+																	'isLike'  => false,
+																	'price'  => 1268,
+																	'salePrice'  => 589,
+																	'isSale'  => true,
+																	'isFew'  => true,
+																	'isNew'  => false,
+																	'url'  => ''
+															),
+															array(
+																	'id' => '',
+																	'thumb' => 'http://img02.yohoboys.com/staticimg/2015/06/30/21/02912cd7f0b2c67939404c71ef00e3f513.jpg',
+																	'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
+																	'isLike'  => false,
+																	'price'  => 1268,
+																	'salePrice'  => 589,
+																	'isSale'  => true,
+																	'isFew'  => true,
+																	'isNew'  => false,
+																	'url'  => ''
+															),
+															array(
+																	'id' => '',
+																	'thumb' => 'http://img02.yohoboys.com/staticimg/2015/06/30/21/02912cd7f0b2c67939404c71ef00e3f513.jpg',
+																	'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
+																	'isLike'  => false,
+																	'price'  => 1268,
+																	'salePrice'  => 589,
+																	'isSale'  => true,
+																	'isFew'  => true,
+																	'isNew'  => false,
+																	'url'  => ''
+															)
+													
+													)
+											 
+									 ),
+									 array(
+												'goods'  => array(
+															array(
+																	'id' => '',
+																	'thumb' => 'http://img11.static.yhbimg.com/yhb-img01/2015/09/17/09/015e14c53a41c7adf0bd039f6493b5a700.jpg?imageView/2/w/140/h/140',
+																	'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
+																	'isLike'  => false,
+																	'price'  => 1268,
+																	'salePrice'  => 589,
+																	'isSale'  => true,
+																	'isFew'  => true,
+																	'isNew'  => false,
+																	'url'  => ''
+															),
+															array(
+																	'id' => '',
+																	'thumb' => 'http://img11.static.yhbimg.com/yhb-img01/2015/09/17/09/015e14c53a41c7adf0bd039f6493b5a700.jpg?imageView/2/w/140/h/140',
+																	'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
+																	'isLike'  => false,
+																	'price'  => 1268,
+																	'salePrice'  => 589,
+																	'isSale'  => true,
+																	'isFew'  => true,
+																	'isNew'  => false,
+																	'url'  => ''
+															),
+															array(
+																	'id' => '',
+																	'thumb' => 'http://img11.static.yhbimg.com/yhb-img01/2015/09/17/09/015e14c53a41c7adf0bd039f6493b5a700.jpg?imageView/2/w/140/h/140',
+																	'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
+																	'isLike'  => false,
+																	'price'  => 1268,
+																	'salePrice'  => 589,
+																	'isSale'  => true,
+																	'isFew'  => true,
+																	'isNew'  => false,
+																	'url'  => ''
+															),
+															array(
+																	'id' => '',
+																	'thumb' => 'http://img11.static.yhbimg.com/yhb-img01/2015/09/17/09/015e14c53a41c7adf0bd039f6493b5a700.jpg?imageView/2/w/140/h/140',
+																	'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
+																	'isLike'  => false,
+																	'price'  => 1268,
+																	'salePrice'  => 589,
+																	'isSale'  => true,
+																	'isFew'  => true,
+																	'isNew'  => false,
+																	'url'  => ''
+															)
+													
+													)
+											 
+									 
+							)
 
-    /**
-     * Ajax方式筛选新品到着、折扣专区商品
-     * 
-     * @return array 根据指定条件筛选之后的商品
-     */
-    public function selectNewAction()
-    {
-        if($this->isAjax())
-        {
-            $gender = $this->get('gender', '1,3');
-            $brand = $this->get('brand', null);
-            $sort = $this->get('sort', null);
-            $color = $this->get('color', null);
-            $size = $this->get('size', null);
-            $price = $this->get('price', null);
-            $p_d = $this->get('p_d', null);
-            $channel = $this->get('channel', '1');
-            $dayLimit = $this->get('dayLimit', '1');
-            $limit = $this->get('limit', 50);
-            $page = $this->get('page', 1);
+				 )      
+		);*/
 
-            $data = Newsale::selectNewSaleProducts($gender, $brand, $sort, $color, $size, $price, $p_d, $channel, $dayLimit, $limit, $page);
+		$this->_view->assign('title', '新品到着');
+		$this->_view->display('new', $data);
+	}
 
-            $this->returnJson(200, '获取成功', $data);
-        }
-    }
+	/**
+	 * Ajax方式筛选新品到着、折扣专区商品
+	 * 
+	 * @return array 根据指定条件筛选之后的商品
+	 */
+	public function selectNewSaleAction()
+	{
+		/*if($this->isAjax())
+		{*/
+			$gender = $this->get('gender', '1,3');
+			$brand = $this->get('brand', null);
+			$sort = $this->get('sort', null);
+			$color = $this->get('color', null);
+			$size = $this->get('size', null);
+			$price = $this->get('price', null);
+			$p_d = $this->get('p_d', null);
+			$channel = $this->get('channel', '1');
+			$dayLimit = $this->get('dayLimit', '1');
+			$limit = $this->get('limit', 50);
+			$page = $this->get('page', 1);
 
+			$data = Newsale::selectNewSaleProducts($gender, $brand, $sort, $color, $size, $price, $p_d, $channel, $dayLimit, $limit, $page);
 
-    public function discountAction()
-    {
+			$result = NewSaleProcess::selectData($data);
 
-        $data = array(
-            'header' => array(
-                 'title'  =>  'SALE'
-             ),
-             
-             'goodsContainer'  => array(
-                 'goods'  => array(
-                      array(
-                          'id' => '',
-                          'thumb' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
-                          'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
-                          'isLike'  => false,
-                          'price'  => 1268,
-                          'salePrice'  => 589,
-                          'isSale'  => true,
-                          'isFew'  => true,
-                          'isNew'  => false,
-                          'url'  => ''
-                      ),
-                      array(
-                          'id' => '',
-                          'thumb' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
-                          'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
-                          'isLike'  => false,
-                          'price'  => 1268,
-                          'salePrice'  => 589,
-                          'isSale'  => true,
-                          'isFew'  => true,
-                          'isNew'  => false,
-                          'url'  => ''
-                      ),
-                      array(
-                          'id' => '',
-                          'thumb' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
-                          'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
-                          'isLike'  => false,
-                          'price'  => 1268,
-                          'salePrice'  => 589,
-                          'isSale'  => true,
-                          'isFew'  => true,
-                          'isNew'  => false,
-                          'url'  => ''
-                      ),
-                      array(
-                          'id' => '',
-                          'thumb' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
-                          'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
-                          'isLike'  => false,
-                          'price'  => 1268,
-                          'salePrice'  => 589,
-                          'isSale'  => true,
-                          'isFew'  => true,
-                          'isNew'  => false,
-                          'url'  => ''
-                      )
-                  )
-             )
-        );
- 
-        /*$this->_view->assign('title', '折扣专区');
+			$this->_view->display('product', $result);
+			// $this->returnJson(200, '获取成功', $data);
+		// }
+	}
 
-        // 折扣专区顶部焦点图
-        $focusData = Newsale::getNewsaleFocus('e9c9be32d72e2906d404a72ee24cb523');
-        // 处理返回的数据
-        $focus = array();
-        if($focusData['code'] == 200)
-        {
-            foreach ($focusData['data'] as $single)
-            {
-                foreach ($single['data'] as $val) {
-                    $val['src'] = Helpers::getImageUrl($val['src'], 375, 667, 1);
-                    $focus[] = $val;
-                }
-            }
-        }
+	/**
+	 * 折扣专区
+	 */
+	public function discountAction()
+	{
 
-        // 折扣专区商品数据
-        $products = Newsale::getNewProducts('1,3', 1, 60);
-        var_dump($products);
+		/*$data = array(
+				'header' => array(
+						 'title'  =>  'SALE'
+				 ),
+				 
+				 'goodsContainer'  => array(
+						 'goods'  => array(
+									array(
+											'id' => '',
+											'thumb' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
+											'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
+											'isLike'  => false,
+											'price'  => 1268,
+											'salePrice'  => 589,
+											'isSale'  => true,
+											'isFew'  => true,
+											'isNew'  => false,
+											'url'  => ''
+									),
+									array(
+											'id' => '',
+											'thumb' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
+											'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
+											'isLike'  => false,
+											'price'  => 1268,
+											'salePrice'  => 589,
+											'isSale'  => true,
+											'isFew'  => true,
+											'isNew'  => false,
+											'url'  => ''
+									),
+									array(
+											'id' => '',
+											'thumb' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
+											'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
+											'isLike'  => false,
+											'price'  => 1268,
+											'salePrice'  => 589,
+											'isSale'  => true,
+											'isFew'  => true,
+											'isNew'  => false,
+											'url'  => ''
+									),
+									array(
+											'id' => '',
+											'thumb' => 'http://img12.static.yhbimg.com/adpic/2015/08/14/12/0205a06e86edb30a7d1833477a9e886577.jpg?imageView/2/w/640/h/480',
+											'name'  => 'GAWS DIGI 丛林数码印花拼接卫衣',
+											'isLike'  => false,
+											'price'  => 1268,
+											'salePrice'  => 589,
+											'isSale'  => true,
+											'isFew'  => true,
+											'isNew'  => false,
+											'url'  => ''
+									)
+							)
+				 )
+		);*/
 
-        $this->_view->display('new', compact('focus', 'products'));*/
+		$data = array(
+			'discount' => true,             
+			'header' => array(       
+				'title'  =>  'SALE' 
+			)
+		);
 
-        $this->_view->assign('title', '折扣专区');
-        $this->_view->display('sale', $data);
-    }
+		// 折扣专区顶部焦点图
+		$focusData = Newsale::getNewsaleFocus('e9c9be32d72e2906d404a72ee24cb523');
+		// 处理返回的数据
+		$focus = array();
+		if($focusData['code'] == 200)
+		{
+			$focus = $focusData['data'];
+		}
+
+		// 折扣专区商品数据
+		$products = Newsale::getSaleProducts('1,3', 1);
+		// 更新tabs
+		$tabs = array();
+		foreach (array_keys($products) as $key => $value) {
+			$tabItem = array();
+			$tabItem['title'] = $value;
+			if($key === 0)
+			{
+				$tabItem['focus'] = true;
+			}
+			$tabs[] = $tabItem;
+		}
+		$data += array('tabs' => $tabs);
+		// 添加商品数据
+		$data += NewSaleProcess::newSaleData($focus, $products);
+
+		echo '<pre>';
+		print_r($data);exit;
+
+		$this->_view->assign('title', '折扣专区');
+		$this->_view->display('sale', $data);
+	}
 }
\ No newline at end of file