<!DOCTYPE html>
<html lang="zxx">
<head>
    <meta charset="UTF-8">
    <title>世界杯猜球网站</title>
      <link rel="stylesheet" href="/shopd/assets/css/assets/css/normalize.css">
  <link rel="stylesheet" href="/shopd/assets/css/assets/css/font-awesome.min.css">
    <link rel="stylesheet" href="http://ceshi.fantianrz.cn/bootstrap.css">
  <link rel="stylesheet" href="/shopd/assets/css/assets/css/line-awesome.min.css">
  <link rel="stylesheet" href="/shopd/assets/css/assets/css/magnific-popup.css">
  <link rel="stylesheet" href="/shopd/assets/css/assets/css/animate.css">
  <link rel="stylesheet" href="/shopd/assets/css/assets/css/slick.css">
  <link rel="stylesheet" href="/shopd/assets/css/assets/css/owl.carousel.min.css">
  <link rel="stylesheet" href="/shopd/assets/css/assets/css/jquery.nice-number.css">
  <link rel="stylesheet" href="/shopd/assets/css/assets/css/mean-menu.css">
  <link rel="stylesheet" href="/shopd/assets/css/assets/css/default.css">
  <link rel="stylesheet" href="/shopd/assets/css/assets/style.css">

</head>
<body>
        <header>
    <div class="header-1 pt-45 ">
      <div class="container">
        <div class="row">
          <div class="col-xl-2 col-lg-2 col-md-6 col-sm-6 col-7 order-md-2 order-lg-1">
            <div class="logo text-md-center text-lg-left">
              <a href="/shopd/assets/css/index"><img src="/shopd/assets/css/assets/img/logo/logo.png" width="200px" alt="aruk-logo"></a>
            </div>
          </div>

          <div class="col-xl-7 col-lg-7 col-md-3 order-md-1 offset-sm-2 offset-md-0 order-lg-2 col-sm-auto">
            <nav>
              <div id="mobile-menu" class="main-menu">
                <ul>
                    <li><a href="/shopd/assets/css/index">世界杯猜球网站</a></li>
                    <li><a href="/shopd/assets/css/shoper">世界杯猜球网站</a></li>
                    <li><a href="/real">信息分类</a></li>
                  <li>
                    <a href="">商品分类</a>
                    <ul class="sub-menu pb-10 pt-10 pl-15 pr-15">
                                          <li><a href="/shopd/assets/css/shop?v=MQ==&c=日用百货">日用百货</a></li>
                                        <li><a href="/shopd/assets/css/shop?v=Mg==&c=电脑办公">电脑办公</a></li>
                                        <li><a href="/shopd/assets/css/shop?v=Mw==&c=家具用品">家具用品</a></li>
                                        </ul>
                                        <li><a href="/shopd/assets/css/login/index">登录 | 注册</a></li>
                                      </li>
                    <li><a href="/login/register">商家入驻</a></li>
                </ul>
              </div>
            </nav>
          </div>
          <div class="col-xl-3 col-lg-3 col-md-3 col-sm-3 col-5 order-md-3 order-lg-3 ">
            <div class="nav-icons">
              <ul>
                <li><a href="/shopd/assets/css/cart"><i class="fas fa-shopping-cart"></i></a></li>
                <li><a href="/shopd/assets/css/love"><i class="lar la-heart"></i></a></li>
                </li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div>
  </header>
<script src="https://www.jq22.com/jquery/jquery-1.9.1.js"></script>
<script type="text/javascript">
   function browserRedirect() {
      var sUserAgent = navigator.userAgent.toLowerCase();
      var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
      var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
      var bIsMidp = sUserAgent.match(/midp/i) == "midp";
      var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
      var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
      var bIsAndroid = sUserAgent.match(/android/i) == "android";
      var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
      var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";
      if (bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM){
          window.location.href="./error?data=请PC查看！";
      }
  }
  browserRedirect();
    $(document).on("click",".add_cart",function(){
        var shop_id = $(this).attr("shop_id");
        var shop_up = $(".num").val();
        var pList = JSON.stringify({shop_id:shop_id,shop_up:shop_up,action:"addcart"});
        $.ajax({
            url:"./include/processor.php",
            type:"post",
            data:{"data":pList},
            dataType:"json",
            success:function(o){
                if(o["code"]==1){
                    alert(o["data"]);
                    window.location.href = '';
                }else{
                    alert("加购物车 - 添加失败");
                }
            }
        })
    })
    $(document).on("click",".login_out",function(){
      var res = confirm("退出登录 - 确认退出吗");
      if(res == true){window.location.href = 'include/login_out';}
    })
    $(document).on("click",".love",function(){
        var shop_id = $(this).attr("shop_id");
        var user_id = $(this).attr("user_id");
        if(user_id == ""){
            alert("加收藏 - 添加失败，请登录");
            window.location.href = 'login/index';
        }else{
            var pList = JSON.stringify({shop_id:shop_id,user_id:user_id,action:"addlove"});
            $.ajax({
                url:"./include/processor.php",
                type:"post",
                data:{"data":pList},
                dataType:"json",
                success:function(o){
                    if(o["code"]==1){
                        alert(o["data"]);
                    }else{
                        alert("加收藏 - 添加失败");
                    }
                }   
            })
        }
    })
    $(document).on("click",".lshop",function(){
        var luser_id = $(this).attr("luser_id");
        var user_id = $(this).attr("user_id");
        if(user_id == ""){
            alert("加收藏 - 添加失败，请登录");
            window.location.href = 'login/index';
        }else{
            var pList = JSON.stringify({luser_id:luser_id,user_id:user_id,action:"addlshop"});
            $.ajax({
                url:"./include/processor.php",
                type:"post",
                data:{"data":pList},
                dataType:"json",
                success:function(o){
                    if(o["code"]==1){
                        alert(o["data"]);
                    }else{
                        alert("加收藏 - 添加失败");
                    }
                }   
            })
        }
    })
    $(document).on("click",".y",function(){
        var lshop_id = $(this).attr("lshop_id");
        var pList = JSON.stringify({lshop_id:lshop_id,action:"y"});
        $.ajax({
            url:"./include/processor.php",
            type:"post",
            data:{"data":pList},
            dataType:"json",
            success:function(o){
                if(o["code"]==1){
                    window.location.href = 'love';
                }else{
                    alert("移除收藏 - 移除失败");
                }
            }   
        })
    })
    $(document).on("click",".p",function(){
        var lt_user_id = $(this).attr("lt_user_id");
        var pList = JSON.stringify({lt_user_id:lt_user_id,action:"p"});
        $.ajax({
            url:"./include/processor.php",
            type:"post",
            data:{"data":pList},
            dataType:"json",
            success:function(o){
                if(o["code"]==1){
                    window.location.href = 'love';
                }else{
                    alert("移除收藏 - 移除失败");
                }
            }   
        })
    })
    $(document).on("click",".pay",function(){
      var pay_all     = $("#pay_all").attr("pay_all");
      var pay_shop_id = $("#pay_all").attr("pay_shop_id");
      var pay_yunfei  = "免运费";
      var pay_shouhuo = $("#pay_shouhuo").val().trim();
      var pay_phone   = $("#pay_phone").val().trim();
      var pay_address = $("#pay_address").val().trim();
      if(pay_shouhuo.length == 0 || pay_address.length == 0 || pay_phone.length != 11){
        alert("收货信息有误，请检查"); return false;
      }else{
        var pList = JSON.stringify({pay_all:pay_all,pay_shop_id:pay_shop_id,pay_yunfei:pay_yunfei,pay_shouhuo:pay_shouhuo,pay_phone:pay_phone,pay_address:pay_address,action:"pay"});
          $.ajax({
              url:"./include/processor.php",
              type:"post",
              data:{"data":pList},
              dataType:"json",
              success:function(o){
                if(o["code"]==1){
                    location.href="./user";
                }else if(o["code"]==0){
                    alert(o["data"]);
                }
              }
          })
      }
    })
    $(document).on("click",".api",function(){
      var pay_all     = $(this).attr("pay_all");
      var pay_code    = $(this).attr("pay_code");
      location.href="./alipay/alipay?pay_all="+pay_all+"&pay_code="+pay_code;
    })
</script>        <script type="text/javascript">
            var pList = JSON.stringify({r_url:"./index.php",r_cao:"访问世界杯猜球网站",action:"rizhi"});
            $.ajax({url:"./include/processor.php",type:"post",data:{"data":pList},dataType:"json",success:function(o){}})
        </script>
        <div class="slider-area slider-2 pt-105">
    <div class="single-slide slider-height">
        <img src="/shopd/assets/css/assets/img/back.jpg" style="margin:auto">
    </div>

  </div>
  <div class="shop-grid-s pt-120">
    <div class="container">
      <div class="row">
        <div class="col-xl-3 col-lg-4 col-md-12  ">
          <div class="sidebar-widget ">
            <div class="categorie ">
              <h4>商品分类</h4>
              <ul class="categories-list pt-10 pl-20 pb-65">
                                <li><a href="/shopd/assets/css/shop?v=MQ==&c=日用百货">日用百货</a></li>
                                    <li><a href="/shopd/assets/css/shop?v=Mg==&c=电脑办公">电脑办公</a></li>
                                    <li><a href="/shopd/assets/css/shop?v=Mw==&c=家具用品">家具用品</a></li>
                                  </ul>
            </div>
          </div>
          <div class="product-on-sale pt-55">
            <div class="container pl-0 pr-0">
              <div class="row">
                <div class="col-xl-12">
                  <div class="section-title pb-5">
                    <h3>
                      热门产品
                    </h3>
                  </div>
                  <hr>
                </div>
              </div>
            </div>
            <div class="on-sale-product-active mt-40">
                              <div class="single-product">
                <div class="product-wrapper d-flex">
                  <div class="product-img position-relative">
                    <img height="100px" src="/shopd/assets/css/assets/up/1641545847.jpg">
                  </div>
                  <div class="product-details mt-10">
                    <h6><a href="/shopd/assets/css/shopd?v=MzQ5&c=电脑办公">惠普（HP）Envy14...</a></h6>
                    <div class="price d-flex">
                      <span>￥9988.00</span>
                      <del>￥9999.00</del>
                    </div>
                  </div>
                </div>
              </div>
                            <div class="single-product">
                <div class="product-wrapper d-flex">
                  <div class="product-img position-relative">
                    <img height="100px" src="/shopd/assets/css/assets/up/1689556326.jpg">
                  </div>
                  <div class="product-details mt-10">
                    <h6><a href="/shopd/assets/css/shopd?v=NDA2&c=家具用品">向橙沙发床可折叠两用客厅...</a></h6>
                    <div class="price d-flex">
                      <span>￥1000.00</span>
                      <del>￥1200.00</del>
                    </div>
                  </div>
                </div>
              </div>
                            <div class="single-product">
                <div class="product-wrapper d-flex">
                  <div class="product-img position-relative">
                    <img height="100px" src="/shopd/assets/css/assets/up/1641535775.jpg">
                  </div>
                  <div class="product-details mt-10">
                    <h6><a href="/shopd/assets/css/shopd?v=MzAz&c=电脑办公">戴尔（DELL）笔记本电...</a></h6>
                    <div class="price d-flex">
                      <span>￥5300.00</span>
                      <del>￥5500.00</del>
                    </div>
                  </div>
                </div>
              </div>
                            <div class="single-product">
                <div class="product-wrapper d-flex">
                  <div class="product-img position-relative">
                    <img height="100px" src="/shopd/assets/css/assets/up/1689327473.jpg">
                  </div>
                  <div class="product-details mt-10">
                    <h6><a href="/shopd/assets/css/shopd?v=NDAw&c=家具用品">宜洛大黑牛真皮沙发客厅意...</a></h6>
                    <div class="price d-flex">
                      <span>￥4600.00</span>
                      <del>￥4800.00</del>
                    </div>
                  </div>
                </div>
              </div>
                            <div class="single-product">
                <div class="product-wrapper d-flex">
                  <div class="product-img position-relative">
                    <img height="100px" src="/shopd/assets/css/assets/up/1689327243.jpg">
                  </div>
                  <div class="product-details mt-10">
                    <h6><a href="/shopd/assets/css/shopd?v=NDE0&c=日用百货">百草园阳台衣架收纳神器挂...</a></h6>
                    <div class="price d-flex">
                      <span>￥20.00</span>
                      <del>￥23.00</del>
                    </div>
                  </div>
                </div>
              </div>
                            <div class="single-product">
                <div class="product-wrapper d-flex">
                  <div class="product-img position-relative">
                    <img height="100px" src="/shopd/assets/css/assets/up/1689327243.jpg">
                  </div>
                  <div class="product-details mt-10">
                    <h6><a href="/shopd/assets/css/shopd?v=Mzk4&c=日用百货">简约家居用品用具家用小百...</a></h6>
                    <div class="price d-flex">
                      <span>￥10.00</span>
                      <del>￥15.00</del>
                    </div>
                  </div>
                </div>
              </div>
                          </div>
          </div>
        </div>
        <div class="col-xl-9 col-lg 8 col-md-12">
          <div class="new-arrival shop-grid pt-80 pt-lg-0">
            <div class="container pl-0 pr-0">
              <div class="arrival-product new-arrival-2">
                <div class="row">
                          <div class="col-xl-3 col-lg-3 col-md-6 col-sm-6">
          <div class="category-items overflow-hidden mb-30 mb-lg-0 pt-15 pb-20">
            <div class="category-img  ">
              <img height="230px" src="/shopd/assets/css/assets/up/1689557441.jpg">
            </div>
            <div class="product-name text-center pt-30" >
              <h6><a href="/shopd/assets/css/shopd?v=NDEy&c=家具用品">衣帽间衣柜玻璃掩门L型转...</a></h6>
            </div>
          </div>
        </div>
                <div class="col-xl-3 col-lg-3 col-md-6 col-sm-6">
          <div class="category-items overflow-hidden mb-30 mb-lg-0 pt-15 pb-20">
            <div class="category-img  ">
              <img height="230px" src="/shopd/assets/css/assets/up/1641545847.jpg">
            </div>
            <div class="product-name text-center pt-30" >
              <h6><a href="/shopd/assets/css/shopd?v=MzQ5&c=电脑办公">惠普（HP）Envy14...</a></h6>
            </div>
          </div>
        </div>
                <div class="col-xl-3 col-lg-3 col-md-6 col-sm-6">
          <div class="category-items overflow-hidden mb-30 mb-lg-0 pt-15 pb-20">
            <div class="category-img  ">
              <img height="230px" src="/shopd/assets/css/assets/up/1641543393.jpg">
            </div>
            <div class="product-name text-center pt-30" >
              <h6><a href="/shopd/assets/css/shopd?v=MzM0&c=电脑办公">一体机电脑 22英寸 直...</a></h6>
            </div>
          </div>
        </div>
                <div class="col-xl-3 col-lg-3 col-md-6 col-sm-6">
          <div class="category-items overflow-hidden mb-30 mb-lg-0 pt-15 pb-20">
            <div class="category-img  ">
              <img height="230px" src="/shopd/assets/css/assets/up/1689556171.jpg">
            </div>
            <div class="product-name text-center pt-30" >
              <h6><a href="/shopd/assets/css/shopd?v=NDA1&c=家具用品">楠著新中式实木沙发客厅大...</a></h6>
            </div>
          </div>
        </div>
                <div class="col-xl-3 col-lg-3 col-md-6 col-sm-6">
          <div class="category-items overflow-hidden mb-30 mb-lg-0 pt-15 pb-20">
            <div class="category-img  ">
              <img height="230px" src="/shopd/assets/css/assets/up/1689556326.jpg">
            </div>
            <div class="product-name text-center pt-30" >
              <h6><a href="/shopd/assets/css/shopd?v=NDA2&c=家具用品">向橙沙发床可折叠两用客厅...</a></h6>
            </div>
          </div>
        </div>
                <div class="col-xl-3 col-lg-3 col-md-6 col-sm-6">
          <div class="category-items overflow-hidden mb-30 mb-lg-0 pt-15 pb-20">
            <div class="category-img  ">
              <img height="230px" src="/shopd/assets/css/assets/up/1689326971.jpg">
            </div>
            <div class="product-name text-center pt-30" >
              <h6><a href="/shopd/assets/css/shopd?v=Mzk2&c=日用百货">马桶置物架家居卫生间用品...</a></h6>
            </div>
          </div>
        </div>
                <div class="col-xl-3 col-lg-3 col-md-6 col-sm-6">
          <div class="category-items overflow-hidden mb-30 mb-lg-0 pt-15 pb-20">
            <div class="category-img  ">
              <img height="230px" src="/shopd/assets/css/assets/up/1689557007.jpg">
            </div>
            <div class="product-name text-center pt-30" >
              <h6><a href="/shopd/assets/css/shopd?v=NDEw&c=家具用品">实木沙发胡桃木客厅贵妃中...</a></h6>
            </div>
          </div>
        </div>
                <div class="col-xl-3 col-lg-3 col-md-6 col-sm-6">
          <div class="category-items overflow-hidden mb-30 mb-lg-0 pt-15 pb-20">
            <div class="category-img  ">
              <img height="230px" src="/shopd/assets/css/assets/up/1689327768.jpg">
            </div>
            <div class="product-name text-center pt-30" >
              <h6><a href="/shopd/assets/css/shopd?v=NDAy&c=家具用品">轩说贵妃组合中小户型布艺...</a></h6>
            </div>
          </div>
        </div>
                <div class="col-xl-3 col-lg-3 col-md-6 col-sm-6">
          <div class="category-items overflow-hidden mb-30 mb-lg-0 pt-15 pb-20">
            <div class="category-img  ">
              <img height="230px" src="/shopd/assets/css/assets/up/1641543717.jpg">
            </div>
            <div class="product-name text-center pt-30" >
              <h6><a href="/shopd/assets/css/shopd?v=MzM1&c=电脑办公">博仑帅一体机电脑曲面办公...</a></h6>
            </div>
          </div>
        </div>
                <div class="col-xl-3 col-lg-3 col-md-6 col-sm-6">
          <div class="category-items overflow-hidden mb-30 mb-lg-0 pt-15 pb-20">
            <div class="category-img  ">
              <img height="230px" src="/shopd/assets/css/assets/up/1689328642.jpg">
            </div>
            <div class="product-name text-center pt-30" >
              <h6><a href="/shopd/assets/css/shopd?v=NDAz&c=家具用品">法莎蒂真皮沙发意式极简高...</a></h6>
            </div>
          </div>
        </div>
                <div class="col-xl-3 col-lg-3 col-md-6 col-sm-6">
          <div class="category-items overflow-hidden mb-30 mb-lg-0 pt-15 pb-20">
            <div class="category-img  ">
              <img height="230px" src="/shopd/assets/css/assets/up/1641546665.jpg">
            </div>
            <div class="product-name text-center pt-30" >
              <h6><a href="/shopd/assets/css/shopd?v=MzUz&c=电脑办公">联想小新AIR15 20...</a></h6>
            </div>
          </div>
        </div>
                <div class="col-xl-3 col-lg-3 col-md-6 col-sm-6">
          <div class="category-items overflow-hidden mb-30 mb-lg-0 pt-15 pb-20">
            <div class="category-img  ">
              <img height="230px" src="/shopd/assets/css/assets/up/1689327680.jpg">
            </div>
            <div class="product-name text-center pt-30" >
              <h6><a href="/shopd/assets/css/shopd?v=NDAx&c=家具用品">欧蒂家居沙发现代简约轻奢...</a></h6>
            </div>
          </div>
        </div>
                        </div>

              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
        <div class="footer-bottom" >
      <div class="container" >
          <div class="row" >
              <div class="col-lg-12">
                  <div class="copyright">
                      <span class="copyright-text" style="width:500px;margin-left: 430px;">? 2025 世界杯猜球网站<i class="fa fa-heart text-danger"></i>&nbsp;&nbsp;&nbsp;备案号：<a href="https://beian.miit.gov.cn/#/Integrated/recordQuery" rel="noopener" target="_blank">苏ICP备20006538号-1</a>
                          </span>
                  </div>
              </div>
          </div>
      </div>
  </div>
      <script src="/shopd/assets/css/assets/js/vendor/jquery.min.js"></script>
  <script src="/shopd/assets/css/assets/js/vendor/modernizr-3.11.2.min.js"></script>
  <script src="/shopd/assets/css/assets/js/vendor/bootstrap.min.js"></script>
  <script src="/shopd/assets/css/assets/js/vendor/popper.min.js"></script>
  <script src="/shopd/assets/css/assets/js/vendor/jquery-mean-menu.min.js"></script>
  <script src="/shopd/assets/css/assets/js/vendor/owl.carousel.min.js"></script>
  <script src="/shopd/assets/css/assets/js/vendor/slick.min.js"></script>
  <script src="/shopd/assets/css/assets/js/vendor/jquery.magnific-popup.min.js"></script>
  <script src="/shopd/assets/css/assets/js/vendor/isotope.min.js"></script>
  <script src="/shopd/assets/css/assets/js/vendor/jquery.nice-number.js"></script>
  <script src="/shopd/assets/css/assets/js/countdown.js"></script>
  <script src="/shopd/assets/css/assets/js/scripts.js"></script>
</body>
</html>