-
49app/Common/function.php
-
3app/Http/Controllers/Api/IndexController.php
-
106app/Http/Controllers/Home/IndexController.php
-
12app/Http/Controllers/Wap/CommonController.php
-
263app/Http/Controllers/Wap/IndexController.php
-
313public/css/style.css
-
231public/css/style博客.css
-
BINpublic/images/logo.png
-
BINpublic/images/screenshots.png
-
0public/images2/0.png
-
BINpublic/images2/1.jpg
-
0public/images2/1.png
-
BINpublic/images2/2.jpg
-
0public/images2/20160820232652166.png
-
BINpublic/images2/20161108163616914.jpg
-
BINpublic/images2/20161108163633172.jpg
-
0public/images2/20161108163706251.png
-
BINpublic/images2/3.jpg
-
BINpublic/images2/4.jpg
-
BINpublic/images2/applead.png
-
0public/images2/b.gif
-
0public/images2/banner.gif
-
BINpublic/images2/banner.jpg
-
BINpublic/images2/blue_icon.png
-
0public/images2/chinese.png
-
0public/images2/foundation.png
-
0public/images2/ico_specific02_8.png
-
0public/images2/icon.gif
-
0public/images2/iconfont-close.png
-
0public/images2/index.png
-
0public/images2/left_li.gif
-
0public/images2/li.png
-
BINpublic/images2/logo.png
-
0public/images2/mobile.png
-
0public/images2/nopic.gif
-
0public/images2/off.png
-
0public/images2/on.png
-
0public/images2/online_bg.png
-
0public/images2/title_line.jpg
-
0public/images2/toolbar.png
-
0public/images2/top_bg.jpg
-
0public/images2/w1.png
-
0public/images2/web.png
-
0public/images2/yi-img-icon.png
-
2resources/views/home/common/footer.blade.php
-
41resources/views/home/common/header.blade.php
-
78resources/views/home/index/category.blade.php
-
78resources/views/home/index/detail.blade.php
-
161resources/views/home/index/index.blade.php
-
38resources/views/home/index/page.blade.php
-
25resources/views/home/index/product.blade.php
-
25resources/views/home/index/productcat.blade.php
-
27resources/views/home/index/search.blade.php
-
73resources/views/home/index/tag.blade.php
-
20resources/views/home2/404.blade.php
-
1resources/views/home2/common/footer.blade.php
-
5resources/views/home2/common/header.blade.php
-
62resources/views/home2/index/category.blade.php
-
57resources/views/home2/index/category2.blade.php
-
60resources/views/home2/index/detail.blade.php
-
66resources/views/home2/index/index.blade.php
-
171resources/views/home2/index/login.blade.php
-
8resources/views/home2/index/page.blade.php
-
35resources/views/home2/index/search.blade.php
-
9resources/views/home2/index/sitemap.blade.php
-
62resources/views/home2/index/tag.blade.php
-
58resources/views/home2/index/tag2.blade.php
-
57resources/views/home2/index/tag3.blade.php
-
7resources/views/home2/index/tags.blade.php
-
20resources/views/wap/404.blade.php
-
1resources/views/wap/common/footer.blade.php
-
6resources/views/wap/common/header.blade.php
-
16resources/views/wap/index/category.blade.php
-
57resources/views/wap/index/category2.blade.php
-
66resources/views/wap/index/detail.blade.php
-
83resources/views/wap/index/index.blade.php
-
171resources/views/wap/index/login.blade.php
-
12resources/views/wap/index/page.blade.php
-
16resources/views/wap/index/product.blade.php
-
17resources/views/wap/index/productcat.blade.php
-
26resources/views/wap/index/search.blade.php
-
8resources/views/wap/index/sitemap.blade.php
-
16resources/views/wap/index/tag.blade.php
-
58resources/views/wap/index/tag2.blade.php
-
57resources/views/wap/index/tag3.blade.php
-
20resources/views/wap/index/tags.blade.php
-
37routes/web.php
@ -0,0 +1,12 @@ |
|||
<?php |
|||
namespace App\Http\Controllers\Wap; |
|||
|
|||
use App\Http\Controllers\Controller; |
|||
|
|||
class CommonController extends Controller |
|||
{ |
|||
public function __construct() |
|||
{ |
|||
parent::__construct(); |
|||
} |
|||
} |
@ -1,23 +1,264 @@ |
|||
<?php |
|||
|
|||
namespace App\Http\Controllers\Wap; |
|||
|
|||
use App\Http\Controllers\CommonController; |
|||
use App\Http\Controllers\Home\CommonController; |
|||
use Illuminate\Support\Facades\DB; |
|||
|
|||
class IndexController extends CommonController |
|||
{ |
|||
/** |
|||
* Create a new controller instance. |
|||
* |
|||
* @return void |
|||
*/ |
|||
public function __construct() |
|||
{ |
|||
//$this->middleware('guest')->except('logout');
|
|||
parent::__construct(); |
|||
} |
|||
|
|||
//首页
|
|||
public function index() |
|||
{ |
|||
return view('wap.index.index'); |
|||
} |
|||
|
|||
public function index() |
|||
//列表页
|
|||
public function category($cat, $page=0) |
|||
{ |
|||
dd('wap/index'); |
|||
$pagenow = $page; |
|||
|
|||
if(empty($cat) || !preg_match('/[0-9]+/',$cat)){return redirect()->route('page404');} |
|||
|
|||
if(cache("catid$cat")){$post = cache("catid$cat");}else{$post = object_to_array(DB::table('arctype')->where('id', $cat)->first(), 1);if(empty($post)){return redirect()->route('page404');} cache(["catid$cat"=>$post], \Carbon\Carbon::now()->addMinutes(2592000));} |
|||
$data['post'] = $post; |
|||
|
|||
$subcat="";$sql=""; |
|||
$post2 = object_to_array(DB::table('arctype')->select('id')->where('pid', $cat)->get()); |
|||
if(!empty($post2)){foreach($post2 as $row){$subcat=$subcat."typeid=".$row["id"]." or ";}} |
|||
$subcat=$subcat."typeid=".$cat; |
|||
$sql=$subcat." or typeid2 in (".$cat.")";//echo $subcat2;exit;
|
|||
$data['sql'] = $sql; |
|||
|
|||
$counts = DB::table("article")->whereRaw($sql)->count(); |
|||
if($counts>sysconfig('CMS_MAXARC')){$counts=sysconfig('CMS_MAXARC');dd($counts);} |
|||
$pagesize = sysconfig('CMS_PAGESIZE');$page=0; |
|||
if($counts % $pagesize){//取总数据量除以每页数的余数
|
|||
$pages = intval($counts/$pagesize) + 1; //如果有余数,则页数等于总数据量除以每页数的结果取整再加一,如果没有余数,则页数等于总数据量除以每页数的结果
|
|||
}else{$pages = $counts/$pagesize;} |
|||
if(!empty($pagenow)){if($pagenow==1 || $pagenow>$pages){return redirect()->route('page404');}$page = $pagenow-1;$nextpage=$pagenow+1;$previouspage=$pagenow-1;}else{$page = 0;$nextpage=2;$previouspage=0;} |
|||
$data['page'] = $page; |
|||
$data['pages'] = $pages; |
|||
$data['counts'] = $counts; |
|||
$start = $page*$pagesize; |
|||
|
|||
$data['posts'] = arclist(array("sql"=>$sql, "limit"=>"$start,$pagesize")); //获取列表
|
|||
$data['pagenav'] = get_listnav(array("counts"=>$counts,"pagesize"=>$pagesize,"pagenow"=>$page+1,"catid"=>$cat)); //获取分页列表
|
|||
|
|||
if($post['templist']=='category2'){if(!empty($pagenow)){return redirect()->route('page404');}} |
|||
|
|||
return view('wap.index.'.$post['templist'], $data); |
|||
} |
|||
} |
|||
|
|||
//文章详情页
|
|||
public function detail($id) |
|||
{ |
|||
if(empty($id) || !preg_match('/[0-9]+/',$id)){return redirect()->route('page404');} |
|||
|
|||
if(cache("detailid$id")){$post = cache("detailid$id");}else{$post = object_to_array(DB::table('article')->where('id', $id)->first(), 1);if(empty($post)){return redirect()->route('page404');}$post['name'] = DB::table('arctype')->where('id', $post['typeid'])->value('name');cache(["detailid$id"=>$post], \Carbon\Carbon::now()->addMinutes(2592000));} |
|||
if($post) |
|||
{ |
|||
$cat = $post['typeid']; |
|||
$post['body'] = ReplaceKeyword($post['body']); |
|||
if(!empty($post['writer'])){$post['writertitle']=$post['title'].' '.$post['writer'];} |
|||
|
|||
$data['post'] = $post; |
|||
$data['pre'] = get_article_prenext(array('aid'=>$post["id"],'typeid'=>$post["typeid"],'type'=>"pre")); |
|||
} |
|||
else |
|||
{ |
|||
return redirect()->route('page404'); |
|||
} |
|||
|
|||
if(cache("catid$cat")){$post=cache("catid$cat");}else{$post = object_to_array(DB::table('arctype')->where('id', $cat)->first(), 1);cache(["catid$cat"=>$post], \Carbon\Carbon::now()->addMinutes(2592000));} |
|||
|
|||
return view('wap.index.'.$post['temparticle'], $data); |
|||
} |
|||
|
|||
//标签详情页,共有3种显示方式,1正常列表,2列表显示文章,3显示描述
|
|||
public function tag($tag, $page=0) |
|||
{ |
|||
$pagenow = $page; |
|||
|
|||
if(empty($tag) || !preg_match('/[0-9]+/',$tag)){return redirect()->route('page404');} |
|||
|
|||
$post = object_to_array(DB::table('tagindex')->where('id',$tag)->first(), 1); |
|||
$data['post'] = $post; |
|||
|
|||
$counts=DB::table("taglist")->where('tid',$tag)->count('aid'); |
|||
if($counts>sysconfig('CMS_MAXARC')){$counts=sysconfig('CMS_MAXARC');} |
|||
$pagesize=sysconfig('CMS_PAGESIZE');$page=0; |
|||
if($counts % $pagesize){//取总数据量除以每页数的余数
|
|||
$pages = intval($counts/$pagesize) + 1; //如果有余数,则页数等于总数据量除以每页数的结果取整再加一,如果没有余数,则页数等于总数据量除以每页数的结果
|
|||
}else{$pages = $counts/$pagesize;} |
|||
if(!empty($pagenow)){if($pagenow==1 || $pagenow>$pages){return redirect()->route('page404');}$page = $pagenow-1;$nextpage=$pagenow+1;$previouspage=$pagenow-1;}else{$page = 0;$nextpage=2;$previouspage=0;} |
|||
$data['page'] = $page; |
|||
$data['pages'] = $pages; |
|||
$data['counts'] = $counts; |
|||
$start=$page*$pagesize; |
|||
|
|||
$posts=object_to_array(DB::table("taglist")->where('tid',$tag)->orderBy('aid', 'desc')->skip($start)->take($pagesize)->get()); |
|||
foreach($posts as $row) |
|||
{ |
|||
$aid[] = $row["aid"]; |
|||
} |
|||
$aid = isset($aid)?implode(',',$aid):""; |
|||
|
|||
if($aid!="") |
|||
{ |
|||
if($post['template']=='tag2') |
|||
{ |
|||
$data['posts'] = arclist(array("sql"=>"id in ($aid)","orderby"=>['id', 'desc'],"row"=>"$pagesize","field"=>"title,body")); //获取列表
|
|||
} |
|||
else |
|||
{ |
|||
$data['posts'] = arclist(array("sql"=>"id in ($aid)","orderby"=>['id', 'desc'],"row"=>"$pagesize")); //获取列表
|
|||
} |
|||
} |
|||
else |
|||
{ |
|||
$data['posts'] = ''; //获取列表
|
|||
} |
|||
|
|||
$data['pagenav'] = get_listnav(array("counts"=>$counts,"pagesize"=>$pagesize,"pagenow"=>$page+1,"catid"=>$tag,"urltype"=>"tag")); //获取分页列表
|
|||
|
|||
if($post['template']=='tag2' || $post['template']=='tag3'){if(!empty($pagenow)){return redirect()->route('page404');}} |
|||
|
|||
return view('wap.index.'.$post['template'], $data); |
|||
} |
|||
|
|||
//标签页
|
|||
public function tags() |
|||
{ |
|||
return view('wap.index.tags'); |
|||
} |
|||
|
|||
//搜索页
|
|||
public function search($keyword) |
|||
{ |
|||
if(empty($keyword)) |
|||
{ |
|||
echo '请输入正确的关键词';exit; |
|||
} |
|||
|
|||
if(strstr($keyword,"&")) exit; |
|||
|
|||
$data['posts']= object_to_array(DB::table("article")->where("title", "like", "%$keyword%")->orderBy('id', 'desc')->take(30)->get()); |
|||
$data['keyword']= $keyword; |
|||
|
|||
return view('wap.index.search', $data); |
|||
} |
|||
|
|||
//单页面
|
|||
public function page($id) |
|||
{ |
|||
$data = []; |
|||
|
|||
if(!empty($id) && preg_match('/[a-z0-9]+/',$id)) |
|||
{ |
|||
$map['filename']=$id; |
|||
if(cache("pageid$id")){$post=cache("pageid$id");}else{$post = object_to_array(DB::table('page')->where($map)->first(), 1);cache("pageid$id", $post, 2592000);cache(["pageid$id"=>$post], \Carbon\Carbon::now()->addMinutes(2592000));} |
|||
|
|||
if($post) |
|||
{ |
|||
$data['post'] = $post; |
|||
} |
|||
else |
|||
{ |
|||
return redirect()->route('page404'); |
|||
} |
|||
|
|||
} |
|||
else |
|||
{ |
|||
return redirect()->route('page404'); |
|||
} |
|||
|
|||
$data['posts'] = object_to_array(DB::table('page')->orderBy(\DB::raw('rand()'))->take(5)->get()); |
|||
|
|||
return view('wap.index.'.$post['template'], $data); |
|||
} |
|||
|
|||
//商品列表页
|
|||
public function productcat($cat, $page=0) |
|||
{ |
|||
$pagenow = $page; |
|||
|
|||
if(empty($cat) || !preg_match('/[0-9]+/',$cat)){return redirect()->route('page404');} |
|||
|
|||
$post = object_to_array(DB::table('product_type')->where('id', $cat)->first(), 1);if(empty($post)){return redirect()->route('page404');} |
|||
$data['post'] = $post; |
|||
|
|||
$subcat=""; |
|||
$post2 = object_to_array(DB::table('product_type')->select('id')->where('pid', $cat)->get()); |
|||
if(!empty($post2)){foreach($post2 as $row){$subcat=$subcat."typeid=".$row["id"]." or ";}} |
|||
$subcat=$subcat."typeid=".$cat; |
|||
$data['sql'] = $subcat; |
|||
|
|||
$counts = DB::table("product")->whereRaw($subcat)->count(); |
|||
if($counts>sysconfig('CMS_MAXARC')){$counts=sysconfig('CMS_MAXARC');dd($counts);} |
|||
$pagesize = sysconfig('CMS_PAGESIZE');$page=0; |
|||
if($counts % $pagesize){//取总数据量除以每页数的余数
|
|||
$pages = intval($counts/$pagesize) + 1; //如果有余数,则页数等于总数据量除以每页数的结果取整再加一,如果没有余数,则页数等于总数据量除以每页数的结果
|
|||
}else{$pages = $counts/$pagesize;} |
|||
if(!empty($pagenow)){if($pagenow==1 || $pagenow>$pages){return redirect()->route('page404');}$page = $pagenow-1;$nextpage=$pagenow+1;$previouspage=$pagenow-1;}else{$page = 0;$nextpage=2;$previouspage=0;} |
|||
$data['page'] = $page; |
|||
$data['pages'] = $pages; |
|||
$data['counts'] = $counts; |
|||
$start = $page*$pagesize; |
|||
|
|||
$data['posts'] = arclist(array("table"=>"product","sql"=>$subcat, "limit"=>"$start,$pagesize")); //获取列表
|
|||
$data['pagenav'] = get_listnav(array("counts"=>$counts,"pagesize"=>$pagesize,"pagenow"=>$page+1,"catid"=>$cat,"urltype"=>"product")); //获取分页列表
|
|||
|
|||
if($post['templist']=='category2'){if(!empty($pagenow)){return redirect()->route('page404');}} |
|||
|
|||
return view('wap.index.'.$post['templist'], $data); |
|||
} |
|||
|
|||
//商品详情页
|
|||
public function product($id) |
|||
{ |
|||
if(empty($id) || !preg_match('/[0-9]+/',$id)){return redirect()->route('page404');} |
|||
|
|||
$post = object_to_array(DB::table('product')->where('id', $id)->first(), 1);if(empty($post)){return redirect()->route('page404');}$post['name'] = DB::table('product_type')->where('id', $post['typeid'])->value('name'); |
|||
if($post) |
|||
{ |
|||
$cat = $post['typeid']; |
|||
$post['body'] = ReplaceKeyword($post['body']); |
|||
if(!empty($post['writer'])){$post['writertitle']=$post['title'].' '.$post['writer'];} |
|||
|
|||
$data['post'] = $post; |
|||
$data['pre'] = get_article_prenext(array('aid'=>$post["id"],'typeid'=>$post["typeid"],'type'=>"pre")); |
|||
} |
|||
else |
|||
{ |
|||
return redirect()->route('page404'); |
|||
} |
|||
|
|||
$post = object_to_array(DB::table('product_type')->where('id', $cat)->first(), 1); |
|||
|
|||
return view('wap.index.'.$post['temparticle'], $data); |
|||
} |
|||
|
|||
//sitemap页面
|
|||
public function sitemap() |
|||
{ |
|||
return view('wap.index.sitemap'); |
|||
} |
|||
|
|||
//404页面
|
|||
public function page404() |
|||
{ |
|||
return view('home.404'); |
|||
} |
|||
|
|||
//测试页面
|
|||
public function test() |
|||
{ |
|||
return date("Y-m-d H:i:s",strtotime("2017-04")); |
|||
} |
|||
} |
@ -1,231 +1,104 @@ |
|||
body,h1,h2,h3,h4,h5,h6,p,ul,ol,dl,dd,form,input,textarea,select,button{margin:0;padding:0;}em,i{font-style:normal;} |
|||
li,ul{list-style:none;}ul{zoom:1;}img{border:none;border:0;margin:0;padding:0;vertical-align:middle;}.cl{clear:both;}.fl,.mfl{float:left;}.fr,.mfr{float:right;}.m-auto{margin:0 auto;} |
|||
body{font-size:14px;color:#313131;font-family:arial,'Hiragino Sans GB',"Microsoft YaHei","Lucida Grande","Lucida Sans Unicode",Helvetica,Arial,Verdana,tahoma,simsun,sans-serif;}.yaheis a,.yahei{font-family:Microsoft YaHei,"Lucida Grande","Lucida Sans Unicode",Helvetica,Arial,Verdana,tahoma,simsun,sans-serif;} |
|||
a{color:#313131;text-decoration:none;}a:hover{text-decoration:underline;color:#22ac38;}.clear{zoom:1;}.clear:after,.imglist2:after{content:"";display:block;clear:both;} |
|||
.mt10{margin-top:10px;}.mb10{margin-bottom:10px;}.zcs a,.zc{color:#c39;}.reds a,.red{color:#22ac38;}.blues a,.blue{color:#0078b6;}.grey,.greys a{color:#999;}.chs a:hover{color:#22ac38;} |
|||
img:hover{filter:alpha(opacity=90);opacity:0.9;} |
|||
/* GLOBAL STYLES |
|||
-------------------------------------------------- */ |
|||
/* Padding below the footer and lighter body text */ |
|||
|
|||
body {color: #5a5a5a;} |
|||
.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4;} |
|||
.bs-docs-featurette-title{margin-bottom:10px;font-size:30px;font-weight:400;color:#333;} |
|||
.half-rule{width:100px;margin:40px auto;} |
|||
.bs-docs-featurette{padding-top:40px;padding-bottom:40px;font-size:16px;line-height:1.5;color:#555;text-align:center;} |
|||
.projects-header{width:60%;text-align:center;margin:60px 0 10px;font-weight:200;margin-bottom:40px;display:block;margin-left:auto;margin-right:auto} |
|||
.projects-header h2{font-size:30px;letter-spacing:1px} |
|||
@media screen and (min-width:768px){ |
|||
.projects-header h2{font-size:36px} |
|||
} |
|||
/* CUSTOMIZE THE NAVBAR |
|||
-------------------------------------------------- */ |
|||
|
|||
.box{width:960px;margin-left:auto;margin-right:auto;overflow:hidden;} |
|||
.fl_640{width:640px;float:left;overflow:hidden;}.fr_300{width:300px;float:right;overflow:hidden;} |
|||
/* Special class on .container surrounding .navbar, used for positioning it into place. */ |
|||
.navbar-wrapper {position: absolute;top: 0;right: 0;left: 0;z-index: 20;} |
|||
|
|||
#header{width:100%;background-color:#22ac38;} |
|||
#navlink{height:50px;line-height:50px;white-space:nowrap;overflow:hidden;} |
|||
.webname{float:left;background:url(../images/logo.png) no-repeat left 7px;padding-left:90px;font-size:1.35em;margin-right:15px;color:#9f9f9f;text-indent:-999em;overflow:hidden;} |
|||
.nav a{font-size:18px;float:left;display:block;padding:0 20px;color:#fff;} |
|||
.nav a:hover{background-color:#179500;color:#fff;} |
|||
/* Flip around the padding for proper display in narrow viewports */ |
|||
.navbar-wrapper > .container {padding-right: 0;padding-left: 0;} |
|||
.navbar-wrapper .navbar {padding-right: 15px;padding-left: 15px;} |
|||
.navbar-wrapper .navbar .container {width: auto;} |
|||
|
|||
.m-sch{width:185px;height:24px;*margin-top:6px;}.m-sch .sch-txt{border:0;background-color:#fff;width:180px;height:24px;line-height:23px;color:#898989;padding-left:5px;} |
|||
/* CUSTOMIZE THE CAROUSEL |
|||
-------------------------------------------------- */ |
|||
|
|||
#tad{width:960px;height:90px;margin:10px auto 0 auto;overflow:hidden;}#itad{width:960px;margin:10px auto 0 auto;overflow:hidden;height:90px;} |
|||
.notice{font-family:SimSun;color:#e53333;line-height:1.5;padding:6px 10px;background:#feffe6;border:1px solid #e6d8b9;font-size:12px;} |
|||
/* Carousel base class */ |
|||
.carousel {height: 500px;margin-bottom: 60px;} |
|||
/* Since positioning the image, we need to help out the caption */ |
|||
.carousel-caption {z-index: 10;} |
|||
|
|||
.imglist{margin-top:10px;margin-right:-8px;}.imglist li{margin-right:8px;position:relative;float:left;overflow:hidden;}.imglist img{display:block;height:115px;width:154px;} |
|||
.imglist span,.imglist2 span{background:#000;filter:alpha(opacity=60);opacity:0.6;bottom:0;color:#fff;font-size:14px;height:28px;line-height:28px;text-align:center;width:100%;position:absolute;overflow:hidden;white-space:nowrap;} |
|||
.imglist2{margin-right:-20px;}.imglist2 li{margin-right:20px;position:relative;float:left;overflow:hidden;}.imglist2 img{display:block;height:105px;width:140px;} |
|||
/* Declare heights because of positioning of img element */ |
|||
.carousel .item {height: 500px;background-color: #777;} |
|||
.carousel-inner > .item > img {position: absolute;top: 0;left: 0;min-width: 100%;height: 500px;} |
|||
|
|||
.list{padding:28px 15px 30px 15px;border-bottom:1px solid #ebebeb;}.list:hover{border-color:#f8f8f8;background-color:#f8f8f8;}.list:hover .tit a{color:#22ac38;} |
|||
.tit{display:block;font-weight:700;font-size:22px;line-height:1.5;color:#333;padding-bottom:6px;} |
|||
.list p{word-break:break-all;color:#777;font-size:16px;line-height:26px;}.list p a{color:#f60;} |
|||
.info{margin-top:9px;color:#999;font-size:14px;}.info a{color:#22ac38;margin-right:8px;}.info .fr{color:#444;}.info .fl i{color:#f60;margin-right:8px;} |
|||
.list .limg{width:169px;height:119px;float:left;margin-right:20px;}.list .limg img{width:169px;height:119px;vertical-align:top;} |
|||
/* MARKETING CONTENT |
|||
-------------------------------------------------- */ |
|||
|
|||
/* Center align the text within the three columns below the carousel */ |
|||
.marketing .col-lg-4 {margin-bottom: 20px;text-align: center;} |
|||
.marketing h2 {font-weight: normal;} |
|||
.marketing .col-lg-4 p {margin-right: 10px;margin-left: 10px;} |
|||
|
|||
|
|||
/* Featurettes |
|||
------------------------- */ |
|||
|
|||
.featurette-divider {margin: 80px 0; /* Space out the Bootstrap <hr> more */} |
|||
|
|||
/* Thin out the marketing headings */ |
|||
.featurette-heading {font-weight: 300;line-height: 1;letter-spacing: -1px;} |
|||
|
|||
/* RESPONSIVE CSS |
|||
-------------------------------------------------- */ |
|||
|
|||
@media (min-width: 768px) { |
|||
/* Navbar positioning foo */ |
|||
.navbar-wrapper {margin-top: 20px;} |
|||
.navbar-wrapper .container {padding-right: 15px;padding-left: 15px;} |
|||
.navbar-wrapper .navbar {padding-right: 0;padding-left: 0;} |
|||
|
|||
/* The navbar becomes detached from the top, so we round the corners */ |
|||
.navbar-wrapper .navbar {border-radius: 4px;} |
|||
|
|||
.side{margin-top:20px;}.stit{border-bottom:1px solid #e5e5e5;height:40px;margin-bottom:15px;} |
|||
.stit h2,.stit h3,.stit .stith{float:left;height:20px;line-height:20px;border-left:5px solid #22ac38;padding-left:9px;font-size:20px;font-weight:normal;} |
|||
.stit .more{float:right;font-size:12px;margin-top:3px;color:#22ac38;}.stith strong{font-weight:normal;} |
|||
.uli{padding:0 0 20px 8px;margin-top:15px;}.uli li{line-height:28px;height:28px;}.stit + .uli{margin-top:0;} |
|||
.uli li a{background:url('../images/icon.gif') 0 12px no-repeat;padding-left:12px;color:#2d64b3;word-break:normal;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;} |
|||
|
|||
.uli2{margin-top:-16px;padding-bottom:20px;} |
|||
.suli{line-height:1.1;padding:14px 0;border-top:1px solid #e5e5e5;} |
|||
.suli a{_width:290px;line-height:1.3;font-size:16px;}.sulii{font-size:14px;margin-top:8px;}.time{color:#f60;margin-right:8px;} |
|||
.suli .limg{width:80px;height:60px;float:left;margin-right:10px;}.suli .limg img{width:80px;height:60px;border:none;} |
|||
|
|||
.cat-box{margin-top:10px;border:1px solid #ccd3e4;border-top:none;} |
|||
.cat-box .cat-title{height:38px;line-height:38px;border-top:2px solid #22ac38;border-bottom:1px solid #ccd3e4;font-size:1.17em;background-color:#fafbfc;}.cat-box .cat-title b a,.cat-box .cat-title strong{margin:0 0 0 15px;color:#22ac38;} |
|||
.cat-title .more{float:right;margin-right:10px;} |
|||
.line-one-thumbnail{float:left;width:200px;height:145px;margin:0 15px 0 0;overflow:hidden;transition-duration:.3s;}.line-one-thumbnail a img{width:200px;height:145px;transition:transform .3s linear;} |
|||
.cat-site{padding:15px 20px 18px 20px;} |
|||
.cat-site .entry-title{font-weight:bold;font-size:16px;display:block;line-height:30px;margin:0 0 5px 0;width:95%;white-space:nowrap;word-wrap:normal;text-overflow:ellipsis;overflow:hidden;} |
|||
.cat-des{border-bottom:1px solid #ccd3e4;padding-bottom:8px;margin-bottom:5px;}.cat-des p{color:#999;} |
|||
.cat-list li{padding-left:20px;background:url(../images/icon5.png) no-repeat left center;line-height:32px;height:32px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;font-size:16px;*width:250px;}.cat-list li span{float:right;color:#999;} |
|||
.line-small{margin-right:-10px;}.line-small .cat-box{width:313px;float:left;margin-right:10px;}.cat-main{color:#777;margin:0 0 5px 0;height:80px;overflow:hidden;} |
|||
.line-small .thumbnail,.line-small .thumbnail img{width:120px;height:80px;} |
|||
.thumbnail{float:left;width:200px;height:145px;margin:0 15px 5px 0;clear:both;overflow:hidden;transition-duration:.3s;} |
|||
|
|||
.uli3{padding-bottom:20px;} |
|||
.uli3 li{padding:5px 0 0 20px;margin-bottom:15px;position:relative;} |
|||
.uli3 li i{position:absolute;top:16px;left:0;background:#22ac38;width:5px;height:5px;} |
|||
.uli3 li a{display:block;font-size:16px;line-height:1.7em;} |
|||
|
|||
.hot_ht a{display:inline-block;padding:8px 10px;font-size:14px;background:#f6f6f6;color:#808080;transition:all .1s;margin:0 4px 10px;border-radius:3px;box-shadow:1px 1px 2px #eee;} |
|||
.hot_ht a:hover{background:#22ac38;color:#fff;box-shadow:1px 1px 1px #1da633;text-decoration:none;} |
|||
.ws-tag a{display:inline-block;font-size:14px;color:#666;border:1px solid #ccc;padding:0 12px;margin-right:12px;margin-bottom:10px;height:30px;line-height:30px;border-radius:30px;cursor:pointer;} |
|||
.ws-tag a:hover{color:#f60;border:1px solid #f60;} |
|||
/* Bump up size of carousel content */ |
|||
.carousel-caption p {margin-bottom: 20px;font-size: 21px;line-height: 1.4;} |
|||
|
|||
.featurette-heading {font-size: 50px;} |
|||
.bs-docs-featurette-title{font-size:36px;} |
|||
.bs-docs-featurette .lead{max-width:80%;margin-right:auto;margin-left:auto;} |
|||
.lead{font-size:21px;} |
|||
.bs-docs-featurette{padding-top:80px;padding-bottom:80px;} |
|||
} |
|||
|
|||
@media (min-width: 992px) { |
|||
.featurette-heading {margin-top: 120px;} |
|||
} |
|||
img:hover{filter:alpha(opacity=90);opacity:0.9;} |
|||
.cl{clear:both;}.fl,.mfl{float:left;}.fr,.mfr{float:right;}.m-auto{margin:0 auto;} |
|||
|
|||
.list{padding:20px 0;border-bottom:1px solid #e5e5e5;} |
|||
.tit{display:block;font-weight:normal;font-size:24px;line-height:1.3;} |
|||
.list p{margin-top:10px;word-break:break-all;color:#999;font-size:14px;line-height:1.5;}.list p a{color:#e74c3c;}.list p:after{content:"..";} |
|||
.info{margin-top:8px;color:#bbb;font-size:12px;}.info a{color:#ea5a3d;margin-right:8px;}.info .fr{color:#444;} |
|||
.list .limg{width:169px;height:119px;float:left;margin-right:20px;}.list .limg img{width:169px;height:119px;vertical-align:top;} |
|||
|
|||
.page,.pages{text-align:center;padding:15px 0px;}.page a:hover{background:#FF5E52;color:#fff;} |
|||
.page a{display:inline-block;height:32px;line-height:32px;padding:0 45px;font-size:14px;color:#fff;background:#22ac38;margin-right:8px;border-radius:3px;box-shadow:1px 1px 2px #eee;} |
|||
|
|||
.pages li{display:inline-block;height:35px;line-height:35px;text-align:center;font-size:14px;color:#808080;background-color:#f4f4f4;padding-right:15px;padding-left:15px;margin-right:1px;*display:inline;} |
|||
.pages li a{color:#808080;}.pages .thisclass{background-color:#22ac38;color:#fff;} |
|||
.pages li:hover,.pages li:hover a{background-color:#22ac38;color:#fff;} |
|||
|
|||
.bth{font-weight:normal;font-family:"Microsoft Yahei";}.bread{color:#ccc;}.bread a{color:#22ac38;} |
|||
.arct{font-size:36px;color:#333;font-weight:600;margin-bottom:12px;} |
|||
#ztinfo{margin-top:8px;border:1px solid #f1f1f1;height:96px;background:#f6f6f6;}#ztinfo h1{width:150px;height:96px;line-height:98px;font-size:22px;font-weight:normal;text-align:center;color:#fff;background-color:#22ac38;} |
|||
#ztinfo p{width:460px;line-height:1.54;padding-top:9px;margin-right:10px;font-family:arial;font-size:13px;color:#808080;}#ztinfo p a{color:#22ac38;} |
|||
.zinfo h1{margin-bottom:8px;}.zkws a:hover{background-color:#179500;color:#fff;}.zkws a{color:#fff;background-color:#22ac38;border-radius:3px;padding:5px 10px;margin:0 5px 5px 0;display:inline-block;font-size:14px;-webkit-transition:all .1s;-moz-transition:all .1s;transition:all .1s;} |
|||
|
|||
.tagb{overflow:hidden;padding:5px 0 10px;border:1px solid #E8E6E3;border-radius:3px;} |
|||
.tagb dl{float:left;width:182px;padding:0 10px 0 20px;border-right:1px solid #E8E6E3;} |
|||
.tagb dt{font-size:16px;color:#38245D;line-height:26px;}.tagb dt a{color:#22ac38;} |
|||
.tagb dd{line-height:24px;padding-top:5px;}.tagb dd a{color:#666;display:inline-block;margin-right:10px;} |
|||
|
|||
.content{font:normal 18px/180% "Microsoft YaHei";color:#222;margin-bottom:15px;} |
|||
.content p{/* margin-bottom:1.35em; */}.content u{color:#1570a6;text-decoration:none;}.content h2,.tagarct{font-size:22px;line-height:1.176;color:#22ac38;padding-top:15px;padding-bottom:10px;}.content strong,.content b{color:#22ac38;font-size:18px;} |
|||
.content img{max-width:640px;width:expression(this.width > 640 ? "640px" :this.width);height:auto;} |
|||
.page a{display:inline-block;height:32px;line-height:32px;padding:0 45px;font-size:14px;color:#fff;background:#ea5a3d;margin-right:8px;border-radius:3px;box-shadow:1px 1px 2px #eee;} |
|||
|
|||
.pages li a{color:#808080;}.pages li{display:inline-block;height:35px;line-height:35px;text-align:center;font-size:14px;color:#808080;background-color:#f4f4f4;padding-right:15px;padding-left:15px;margin-right:1px;} |
|||
.pages .thisclass{background-color:#ea5a3d;}.pages .thisclass a{color:#fff;} |
|||
.pages li:hover,.pages li:hover a{background-color:#ea5a3d;color:#fff;} |
|||
|
|||
.content{margin-bottom:15px;font-size:16px;} |
|||
.content p{margin-bottom:0;}.content u{color:red;text-decoration:none;} |
|||
.content img{max-width:100%;height:auto;} |
|||
.content blockquote{padding:.6em 1em;border-left:.4em solid #cad4f2;background:#f0f0f0;} |
|||
.dinfo,.timely{color:#aaa;font-size:12px;line-height:1.5;font-family:SimSun;margin:5px 0 8px;}.dinfo a,.timely #atime{color:#22ac38;} |
|||
|
|||
#slideBox{width:640px;height:347px;overflow:hidden;position:relative;} |
|||
#slideBox ul#show_pic{margin:0;padding:0;list-style:none;width:6400px;height:347px;position:absolute;} |
|||
#slideBox ul#show_pic li{float:left;margin:0;padding:0;height:347px;} |
|||
#slideBox ul#show_pic li img{display:block;} |
|||
#iconBall{position:absolute;bottom:0;right:0;} |
|||
#iconBall li{float:left;color:#7a7a7a;width:32px;height:28px;line-height:28px;cursor:pointer;text-align:center;font-size:14px;padding-top:4px;} |
|||
#iconBall li.active{background:url(../images/ibg.png) no-repeat;color:#fff;} |
|||
#slideText{width:640px;height:28px;background:rgba(0,0,0,0.7);color:#fff;position:absolute;left:0px;bottom:0px;*background:transparent;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#b2000000,endColorstr=#b2000000);} |
|||
#textBall{position:absolute;left:10px;bottom:5px;} |
|||
#textBall li{float:left;cursor:pointer;display:none;color:#fff;font-size:14px;} |
|||
#textBall li.active{display:block;} |
|||
#textBall li a{text-decoration:none;color:#fff;} |
|||
|
|||
.hdp{margin-bottom:10px;font-size:12px;font-family:simsun,sans-serif;} |
|||
.hdp .fl{width:640px;overflow:hidden;} |
|||
.hdp .fr{width:290px;overflow:hidden;padding:10px 10px 4px 10px;border:1px solid #e0e0e0;line-height:22px;color:#555;}.hdp .fr a{margin-right:10px;} |
|||
.ttit{border-left:2px solid #f60;padding-left:8px;margin-right:8px;line-height:16px;margin-bottom:5px;} |
|||
.titem{padding-bottom:10px;border-bottom:1px dotted #e0e0e0;margin-bottom:10px;} |
|||
.iad1{height:60px;overflow:hidden;margin-top:8px;} |
|||
|
|||
.rtags a{margin-right:10px;line-height:1.5;} |
|||
.bqtag{border-bottom:1px #EAEAEA solid;padding:15px 0 20px;}.bqtag strong{color:#000;font:300 22px/36px 'Microsoft YaHei';}.bqtag a{margin-right:24px;font:14px/36px 'Tahoma';color:#333;display:inline-block;} |
|||
|
|||
.zmBox li{width:23px;height:23px;float:left;margin-bottom:5px;} |
|||
.zmBox li a{width:100%;height:00%;display:block;text-align:center;color:#333;font:300 12px/22px 'Tahoma';} |
|||
.nameBox{margin-top:25px;padding:0 6px;} |
|||
.nameBox .name{padding:26px 0 32px;border-bottom:1px #EAEAEA solid;} |
|||
.nameBox .name h3 a{width:36px;height:36px;color:#333;font:300 22px/36px 'Tahoma';background:#EAEAEA;display:block;text-align:center;text-decoration:none;} |
|||
.nameBox .name ul{margin-top:24px;} |
|||
.nameBox .name li{display:inline;display:inline-block;margin-right:24px;} |
|||
.nameBox .name li a{font:14px/36px 'Tahoma';color:#333;display:inline-block;} |
|||
|
|||
#footer{text-align:center;margin-bottom:5px;margin-top:10px;color:#5D5D5D;} |
|||
.tm{overflow:hidden;position:fixed;left:1px;bottom:15px;z-index:999;_position:absolute;} |
|||
|
|||
.labels a{padding:0 8px;border:1px solid #e5e5e5;color:#2393df;margin-right:5px;display:inline-block;height:20px;line-height:20px;}.labels a:hover{background-color:#2393df;color:#fff;border:1px solid #2393df;} |
|||
#iadimg{height:280px;width:100%;display:block;}.zdes{margin-bottom:8px;} |
|||
.uzlist{padding-left:5px;}.uzlist li{padding-left:30px;position:relative;line-height:38px;height:38px;overflow:hidden;}.side .uzlist{margin-top:-5px;} |
|||
.uzlist li .num{position:absolute;left:0;width:20px;height:20px;text-align:center;line-height:20px;top:9px;font-size:16px;color:#22ac38;} |
|||
.uzlist li .top3{background:#22ac38;color:#fff;}.uzlist li a{color:#333;font-size:16px;display:block;overflow:hidden;} |
|||
.readmore a{display:block;height:42px;line-height:42px;text-align:center;background:#f4f4f4;font-size:18px;color:#333;}.readmore a:hover{background:#22ac38;color:#fff;} |
|||
|
|||
/*==========right images==========*/ |
|||
.hotPic{margin-top:15px;margin-right:-20px;}.hotPic img{display:block;height:105px;width:140px;} |
|||
.hotPic li{margin-right:20px;margin-bottom:5px;float:left;overflow:hidden;width:140px;} |
|||
.hotPic span{height:30px;line-height:28px;text-align:center;padding-left:5px;padding-right:5px;display:block;overflow:hidden;white-space:nowrap;} |
|||
|
|||
/*TAB标签*/ |
|||
.nTab{background:#22ac38;} |
|||
.nTab .TabTitle{clear:both;height:30px;line-height:30px;overflow:hidden;font-size:14px;color:white;} |
|||
.nTab .TabTitle ul{margin:0;padding:0;} |
|||
.nTab .TabTitle li{float:left;width:84px;cursor:pointer;list-style-type:none;text-align:center;} |
|||
.nTab .TabTitle .active{background:white;color:#22ac38;border-left:1px #ebebeb solid;border-top:1px #ebebeb solid;border-bottom:1px #fff solid;} |
|||
.nTab .TabTitle .normal{background:border-top:1px #ebebeb solid;border-bottom:1px #ebebeb solid;} |
|||
.nTab .TabContent{width:auto;background:#fff;margin:0px auto;padding:10px;border-right:1px #ebebeb solid;border-left:1px #ebebeb solid;padding:5px 5px;overflow:hidden;line-height:23px;} |
|||
.TabContent ul{margin-left:8px;} |
|||
.TabContent ul li{display:inline-block;width:205px;font-size:14px;} |
|||
.TabContent ul p{font-weight:bolder;font-size:14px;margin-top:5px;} |
|||
.none{display:none;} |
|||
|
|||
#hot{border-top-width:3px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:#1A5F97;border-right-color:#ebebeb;border-bottom-color:#ebebeb;border-left-color:#ebebeb;overflow:hidden;} |
|||
#hot h2{font-size:18px;line-height:62px;background-color:#D7E7F7;background-image:url(../images/hot.png);background-repeat:no-repeat;background-position:10px center;height:62px;padding-left:70px;} |
|||
#hot h2 a{color:#000000;}#hot dl{padding:15px;line-height:26px;font-size:16px;color:#777;} |
|||
#hot dl .tags{margin-top:8px;text-decoration:none;line-height:25px;height:25px;overflow:hidden;color:#999999;} |
|||
|
|||
/* pic list */ |
|||
.tcol{font-size:12px;height:60px;line-height:60px;overflow:hidden;font-family:SimSun;}.tcol span.fl{color:#bbb;} |
|||
.tcol .tith{font-weight:normal;color:#ddd;width:250px;} |
|||
.tname{color:#cb44a2;font-size:26px;font-family:SimHei,"Microsoft YaHei";} |
|||
.hname{color:#bbb;letter-spacing:1px;font-size:12px;} |
|||
.tcol .more{font-family:"Microsoft Yahei";color:#666;} |
|||
|
|||
.pul{margin-right:-16px;font-family:SimSun;} |
|||
.pul li{float:left;overflow:hidden;margin-right:16px; margin-bottom:15px;} |
|||
.pul li a{color:#717171;font-size:12px;} |
|||
.pul li a img{width:228px;height:152px;display:block;} |
|||
.pul li a p{width:210px;height:30px;line-height:30px;overflow:hidden;padding:0 9px;}.pul li a:hover p{background-color:#f7f7f7;color:#c39;} |
|||
.pul li span{padding:0 9px;color:#999;font-size:12px;} |
|||
|
|||
.pul2{margin-right:-16px;font-family:SimSun;} |
|||
.pul2 li{float:left;margin-right:16px;margin-bottom:10px;overflow:hidden;} |
|||
.pul2 li a{color:#717171;font-size:12px;font-family:SimSun;} |
|||
.pul2 li a img{width:228px;height:152px;display:block;} |
|||
.pul2 li a p{width:210px;height:43px;line-height:43px;text-align:center;overflow:hidden;background-color:#fff; color:#5d5d5d;padding:0 9px;} |
|||
.pul2 li a:hover p{background-color:#f7f7f7;color:#c39;} |
|||
|
|||
.tagl{font-family:SimSun;font-size:12px;padding:10px 0px;height:25px;line-height:25px;color:#9F9F9F;width:960px;margin:0 auto;}.tagl span{float:right;}.tagl span b{color:#FF5B90;font-weight:normal;} |
|||
.tagsl a{display:inline-block;height:25px;line-height:25px;padding:0px 10px;background-color:#F6F6F6;color:#9F9F9F;}.tagsl a:hover{background-color:#FF5B90;color:#fff;} |
|||
|
|||
.tas{color:#CCC;} |
|||
.tas a{font-size:12px;font-family:SimSun;margin:0 5px; color:#666;padding:5px 10px;border-radius:3px;}.tas a:hover{background:#FF5B90;color:#FFF;} |
|||
|
|||
#selection{border:solid 1px #e1e1e1;padding-bottom:10px;padding-top:10px;clear:both;font-size:12px;color:gray;font-family:Arial,simsun,sans-serif,"宋体";} |
|||
.secitem{clear:both;line-height:24px;overflow:hidden;padding-left:10px;padding-right:10px;} |
|||
.secitem dt{float:left;width:60px;text-align:right;white-space:nowrap;} |
|||
.secitem_brand{width:50px!important;text-align:right!important;} |
|||
.secitem dd{overflow:hidden;display:block;zoom:1;} |
|||
.secitem a{margin-right:10px;color:#25d;}.secitem a:hover{color:red;} |
|||
.secitem span,.secitem a{display:inline-block;float:left;white-space:nowrap;} |
|||
.secitem a.select{color:#333;font-weight:700;text-decoration:none;} |
|||
|
|||
.sbox{width:920px;margin:10px auto 0 auto;overflow:hidden;padding:15px 19px 19px 19px; border:1px solid #E8E8E8;font-family:SimSun;} |
|||
.sbox h1{font-family:"Microsoft Yahei",simsun;font-size:25px;color:#5d5d5d;font-weight:normal;color:#f60;} |
|||
.sbox div.fl{width:670px;overflow:hidden;}.sbox div.fr{width:250px;overflow:hidden;} |
|||
.sinfo{height:30px;line-height:30px;padding-bottom:9px;color:#9f9f9f;font-size:12px;}#nowp{color:#FF5B90;} |
|||
.position{width:960px;margin:10px auto 0 auto;color:#666;} |
|||
|
|||
.pbox{padding-top:20px;text-align:center;width:920px;padding-bottom:10px;border-top:1px solid #e8e8e8;} |
|||
.pbox img{max-width:920px;width:expression(this.width > 920 ? "920px" :this.width);height:auto;} |
|||
.ptext{line-height:22px;text-align:left;}.ptext p{margin-bottom:15px;} |
|||
.stx{height:30px;line-height:30px;padding-top:9px;margin-top:10px;color:#9f9f9f;margin-bottom:-8px;border-top:1px solid #E8E8E8;font-size:12px;} |
|||
.stx p.fl span a{display:inline-block;height:22px;line-height:22px;padding:0px 7px;margin-left:5px;background-color:#F6F6F6;color:#9F9F9F;border-radius:3px; font-size:12px;} |
|||
.stx p.fl span a:hover{background-color:#FF5B90;color:#fff;} |
|||
|
|||
|
|||
/*==========zishiying==========*/ |
|||
@media screen and (min-width:641px) and (max-width:960px){ |
|||
.box{width:640px;margin-left:auto;margin-right:auto;overflow:hidden;} |
|||
.m-sch{width:105px;margin-right:5px;}.m-sch .sch-txt{width:100px;} |
|||
.fl_640,#header,.fr_300{width:100%;} |
|||
#tad,#itad,#footer,#SOHUCS,.nav,.tm,.imglist2,.box .hdp{display:none;} |
|||
} |
|||
|
|||
@media screen and (max-width:640px){ |
|||
body{font-size:14px;font-family:'Microsoft YaHei',Hei,arial,sans-serif;overflow-x:hidden;} |
|||
.box{width:100%;margin-left:auto;margin-right:auto;overflow:hidden;} |
|||
.list{padding:20px 6px;border-bottom:1px solid #e5e5e5;} |
|||
.tit{display:block;font-weight:normal;font-size:20px;line-height:1.2;} |
|||
.list p{margin-top:10px;word-break:break-all;color:#777;font-size:14px;line-height:20px;} |
|||
.info,.dinfo,.list p{font-family:'Microsoft YaHei',Hei,arial,sans-serif;} |
|||
.list .limg{height:52px;width:84px;float:left;margin-right:20px;}.list .limg img{height:52px;width:84px;border:none;} |
|||
.suli .limg{width:60px;height:40px;float:left;margin-right:10px;}.suli .limg img{width:60px;height:40px;border:none;} |
|||
.imglist li,.imglist2 li,.hotPic li{margin-left:1%;margin-right:1%;width:48%;margin-bottom:6px;}.imglist img,.imglist2 img,.hotPic img{height:32vw;width:100%;}.imglist,.imglist2,.hotPic{margin-right:0;} |
|||
|
|||
.tagb{padding:5px 0 8px;} |
|||
.tagb dl{width:100%;padding:0 10px 0 10px;border-right:none;} |
|||
.m-sch{width:105px;margin-right:5px;}.m-sch .sch-txt{width:100px;} |
|||
.arct{font-size:24px;font-weight:600;} |
|||
.content img,#iadimg{width:100%;height:auto;}.line-small .cat-box{width:auto;float:none;margin-right:0px;margin-left:0px;} |
|||
.lmdh,.side,.content,.bread,.arct,.bqtag,.tagb,.cat-box,.line-small,.zinfo,.timely{margin-left:6px;margin-right:6px;} |
|||
.fl_640,#header,.fr_300{width:100%;}.mfl,.mfr{float:none;} |
|||
#tad,#itad,#ztinfo p.fr,.nav,.tm,.notice,#SOHUCS,#ztinfo,.w120,.zstu,.ipage,.line-one-thumbnail,#footer,#akeyword,.box .hdp{display:none;} |
|||
} |
|||
.banner{text-align:center;padding-top:100px;color: #fff;background:url(../images/banner.jpg);} |
|||
.imgzsy{width:100%;/* height:14vw; */} |
|||
footer{margin-top:40px;} |
|||
footer p{text-align:center;} |
@ -0,0 +1,231 @@ |
|||
body,h1,h2,h3,h4,h5,h6,p,ul,ol,dl,dd,form,input,textarea,select,button{margin:0;padding:0;}em,i{font-style:normal;} |
|||
li,ul{list-style:none;}ul{zoom:1;}img{border:none;border:0;margin:0;padding:0;vertical-align:middle;}.cl{clear:both;}.fl,.mfl{float:left;}.fr,.mfr{float:right;}.m-auto{margin:0 auto;} |
|||
body{font-size:14px;color:#313131;font-family:arial,'Hiragino Sans GB',"Microsoft YaHei","Lucida Grande","Lucida Sans Unicode",Helvetica,Arial,Verdana,tahoma,simsun,sans-serif;}.yaheis a,.yahei{font-family:Microsoft YaHei,"Lucida Grande","Lucida Sans Unicode",Helvetica,Arial,Verdana,tahoma,simsun,sans-serif;} |
|||
a{color:#313131;text-decoration:none;}a:hover{text-decoration:underline;color:#22ac38;}.clear{zoom:1;}.clear:after,.imglist2:after{content:"";display:block;clear:both;} |
|||
.mt10{margin-top:10px;}.mb10{margin-bottom:10px;}.zcs a,.zc{color:#c39;}.reds a,.red{color:#22ac38;}.blues a,.blue{color:#0078b6;}.grey,.greys a{color:#999;}.chs a:hover{color:#22ac38;} |
|||
img:hover{filter:alpha(opacity=90);opacity:0.9;} |
|||
|
|||
.box{width:960px;margin-left:auto;margin-right:auto;overflow:hidden;} |
|||
.fl_640{width:640px;float:left;overflow:hidden;}.fr_300{width:300px;float:right;overflow:hidden;} |
|||
|
|||
#header{width:100%;background-color:#22ac38;} |
|||
#navlink{height:50px;line-height:50px;white-space:nowrap;overflow:hidden;} |
|||
.webname{float:left;background:url(../images/logo.png) no-repeat left 7px;padding-left:90px;font-size:1.35em;margin-right:15px;color:#9f9f9f;text-indent:-999em;overflow:hidden;} |
|||
.nav a{font-size:18px;float:left;display:block;padding:0 20px;color:#fff;} |
|||
.nav a:hover{background-color:#179500;color:#fff;} |
|||
|
|||
.m-sch{width:185px;height:24px;*margin-top:6px;}.m-sch .sch-txt{border:0;background-color:#fff;width:180px;height:24px;line-height:23px;color:#898989;padding-left:5px;} |
|||
|
|||
#tad{width:960px;height:90px;margin:10px auto 0 auto;overflow:hidden;}#itad{width:960px;margin:10px auto 0 auto;overflow:hidden;height:90px;} |
|||
.notice{font-family:SimSun;color:#e53333;line-height:1.5;padding:6px 10px;background:#feffe6;border:1px solid #e6d8b9;font-size:12px;} |
|||
|
|||
.imglist{margin-top:10px;margin-right:-8px;}.imglist li{margin-right:8px;position:relative;float:left;overflow:hidden;}.imglist img{display:block;height:115px;width:154px;} |
|||
.imglist span,.imglist2 span{background:#000;filter:alpha(opacity=60);opacity:0.6;bottom:0;color:#fff;font-size:14px;height:28px;line-height:28px;text-align:center;width:100%;position:absolute;overflow:hidden;white-space:nowrap;} |
|||
.imglist2{margin-right:-20px;}.imglist2 li{margin-right:20px;position:relative;float:left;overflow:hidden;}.imglist2 img{display:block;height:105px;width:140px;} |
|||
|
|||
.list{padding:28px 15px 30px 15px;border-bottom:1px solid #ebebeb;}.list:hover{border-color:#f8f8f8;background-color:#f8f8f8;}.list:hover .tit a{color:#22ac38;} |
|||
.tit{display:block;font-weight:700;font-size:22px;line-height:1.5;color:#333;padding-bottom:6px;} |
|||
.list p{word-break:break-all;color:#777;font-size:16px;line-height:26px;}.list p a{color:#f60;} |
|||
.info{margin-top:9px;color:#999;font-size:14px;}.info a{color:#22ac38;margin-right:8px;}.info .fr{color:#444;}.info .fl i{color:#f60;margin-right:8px;} |
|||
.list .limg{width:169px;height:119px;float:left;margin-right:20px;}.list .limg img{width:169px;height:119px;vertical-align:top;} |
|||
|
|||
.side{margin-top:20px;}.stit{border-bottom:1px solid #e5e5e5;height:40px;margin-bottom:15px;} |
|||
.stit h2,.stit h3,.stit .stith{float:left;height:20px;line-height:20px;border-left:5px solid #22ac38;padding-left:9px;font-size:20px;font-weight:normal;} |
|||
.stit .more{float:right;font-size:12px;margin-top:3px;color:#22ac38;}.stith strong{font-weight:normal;} |
|||
.uli{padding:0 0 20px 8px;margin-top:15px;}.uli li{line-height:28px;height:28px;}.stit + .uli{margin-top:0;} |
|||
.uli li a{background:url('../images/icon.gif') 0 12px no-repeat;padding-left:12px;color:#2d64b3;word-break:normal;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;} |
|||
|
|||
.uli2{margin-top:-16px;padding-bottom:20px;} |
|||
.suli{line-height:1.1;padding:14px 0;border-top:1px solid #e5e5e5;} |
|||
.suli a{_width:290px;line-height:1.3;font-size:16px;}.sulii{font-size:14px;margin-top:8px;}.time{color:#f60;margin-right:8px;} |
|||
.suli .limg{width:80px;height:60px;float:left;margin-right:10px;}.suli .limg img{width:80px;height:60px;border:none;} |
|||
|
|||
.cat-box{margin-top:10px;border:1px solid #ccd3e4;border-top:none;} |
|||
.cat-box .cat-title{height:38px;line-height:38px;border-top:2px solid #22ac38;border-bottom:1px solid #ccd3e4;font-size:1.17em;background-color:#fafbfc;}.cat-box .cat-title b a,.cat-box .cat-title strong{margin:0 0 0 15px;color:#22ac38;} |
|||
.cat-title .more{float:right;margin-right:10px;} |
|||
.line-one-thumbnail{float:left;width:200px;height:145px;margin:0 15px 0 0;overflow:hidden;transition-duration:.3s;}.line-one-thumbnail a img{width:200px;height:145px;transition:transform .3s linear;} |
|||
.cat-site{padding:15px 20px 18px 20px;} |
|||
.cat-site .entry-title{font-weight:bold;font-size:16px;display:block;line-height:30px;margin:0 0 5px 0;width:95%;white-space:nowrap;word-wrap:normal;text-overflow:ellipsis;overflow:hidden;} |
|||
.cat-des{border-bottom:1px solid #ccd3e4;padding-bottom:8px;margin-bottom:5px;}.cat-des p{color:#999;} |
|||
.cat-list li{padding-left:20px;background:url(../images/icon5.png) no-repeat left center;line-height:32px;height:32px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;font-size:16px;*width:250px;}.cat-list li span{float:right;color:#999;} |
|||
.line-small{margin-right:-10px;}.line-small .cat-box{width:313px;float:left;margin-right:10px;}.cat-main{color:#777;margin:0 0 5px 0;height:80px;overflow:hidden;} |
|||
.line-small .thumbnail,.line-small .thumbnail img{width:120px;height:80px;} |
|||
.thumbnail{float:left;width:200px;height:145px;margin:0 15px 5px 0;clear:both;overflow:hidden;transition-duration:.3s;} |
|||
|
|||
.uli3{padding-bottom:20px;} |
|||
.uli3 li{padding:5px 0 0 20px;margin-bottom:15px;position:relative;} |
|||
.uli3 li i{position:absolute;top:16px;left:0;background:#22ac38;width:5px;height:5px;} |
|||
.uli3 li a{display:block;font-size:16px;line-height:1.7em;} |
|||
|
|||
.hot_ht a{display:inline-block;padding:8px 10px;font-size:14px;background:#f6f6f6;color:#808080;transition:all .1s;margin:0 4px 10px;border-radius:3px;box-shadow:1px 1px 2px #eee;} |
|||
.hot_ht a:hover{background:#22ac38;color:#fff;box-shadow:1px 1px 1px #1da633;text-decoration:none;} |
|||
.ws-tag a{display:inline-block;font-size:14px;color:#666;border:1px solid #ccc;padding:0 12px;margin-right:12px;margin-bottom:10px;height:30px;line-height:30px;border-radius:30px;cursor:pointer;} |
|||
.ws-tag a:hover{color:#f60;border:1px solid #f60;} |
|||
|
|||
.page,.pages{text-align:center;padding:15px 0px;}.page a:hover{background:#FF5E52;color:#fff;} |
|||
.page a{display:inline-block;height:32px;line-height:32px;padding:0 45px;font-size:14px;color:#fff;background:#22ac38;margin-right:8px;border-radius:3px;box-shadow:1px 1px 2px #eee;} |
|||
|
|||
.pages li{display:inline-block;height:35px;line-height:35px;text-align:center;font-size:14px;color:#808080;background-color:#f4f4f4;padding-right:15px;padding-left:15px;margin-right:1px;*display:inline;} |
|||
.pages li a{color:#808080;}.pages .thisclass{background-color:#22ac38;color:#fff;} |
|||
.pages li:hover,.pages li:hover a{background-color:#22ac38;color:#fff;} |
|||
|
|||
.bth{font-weight:normal;font-family:"Microsoft Yahei";}.bread{color:#ccc;}.bread a{color:#22ac38;} |
|||
.arct{font-size:36px;color:#333;font-weight:600;margin-bottom:12px;} |
|||
#ztinfo{margin-top:8px;border:1px solid #f1f1f1;height:96px;background:#f6f6f6;}#ztinfo h1{width:150px;height:96px;line-height:98px;font-size:22px;font-weight:normal;text-align:center;color:#fff;background-color:#22ac38;} |
|||
#ztinfo p{width:460px;line-height:1.54;padding-top:9px;margin-right:10px;font-family:arial;font-size:13px;color:#808080;}#ztinfo p a{color:#22ac38;} |
|||
.zinfo h1{margin-bottom:8px;}.zkws a:hover{background-color:#179500;color:#fff;}.zkws a{color:#fff;background-color:#22ac38;border-radius:3px;padding:5px 10px;margin:0 5px 5px 0;display:inline-block;font-size:14px;-webkit-transition:all .1s;-moz-transition:all .1s;transition:all .1s;} |
|||
|
|||
.tagb{overflow:hidden;padding:5px 0 10px;border:1px solid #E8E6E3;border-radius:3px;} |
|||
.tagb dl{float:left;width:182px;padding:0 10px 0 20px;border-right:1px solid #E8E6E3;} |
|||
.tagb dt{font-size:16px;color:#38245D;line-height:26px;}.tagb dt a{color:#22ac38;} |
|||
.tagb dd{line-height:24px;padding-top:5px;}.tagb dd a{color:#666;display:inline-block;margin-right:10px;} |
|||
|
|||
.content{font:normal 18px/180% "Microsoft YaHei";color:#222;margin-bottom:15px;} |
|||
.content p{/* margin-bottom:1.35em; */}.content u{color:#1570a6;text-decoration:none;}.content h2,.tagarct{font-size:22px;line-height:1.176;color:#22ac38;padding-top:15px;padding-bottom:10px;}.content strong,.content b{color:#22ac38;font-size:18px;} |
|||
.content img{max-width:640px;width:expression(this.width > 640 ? "640px" :this.width);height:auto;} |
|||
.content blockquote{padding:.6em 1em;border-left:.4em solid #cad4f2;background:#f0f0f0;} |
|||
.dinfo,.timely{color:#aaa;font-size:12px;line-height:1.5;font-family:SimSun;margin:5px 0 8px;}.dinfo a,.timely #atime{color:#22ac38;} |
|||
|
|||
#slideBox{width:640px;height:347px;overflow:hidden;position:relative;} |
|||
#slideBox ul#show_pic{margin:0;padding:0;list-style:none;width:6400px;height:347px;position:absolute;} |
|||
#slideBox ul#show_pic li{float:left;margin:0;padding:0;height:347px;} |
|||
#slideBox ul#show_pic li img{display:block;} |
|||
#iconBall{position:absolute;bottom:0;right:0;} |
|||
#iconBall li{float:left;color:#7a7a7a;width:32px;height:28px;line-height:28px;cursor:pointer;text-align:center;font-size:14px;padding-top:4px;} |
|||
#iconBall li.active{background:url(../images/ibg.png) no-repeat;color:#fff;} |
|||
#slideText{width:640px;height:28px;background:rgba(0,0,0,0.7);color:#fff;position:absolute;left:0px;bottom:0px;*background:transparent;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#b2000000,endColorstr=#b2000000);} |
|||
#textBall{position:absolute;left:10px;bottom:5px;} |
|||
#textBall li{float:left;cursor:pointer;display:none;color:#fff;font-size:14px;} |
|||
#textBall li.active{display:block;} |
|||
#textBall li a{text-decoration:none;color:#fff;} |
|||
|
|||
.hdp{margin-bottom:10px;font-size:12px;font-family:simsun,sans-serif;} |
|||
.hdp .fl{width:640px;overflow:hidden;} |
|||
.hdp .fr{width:290px;overflow:hidden;padding:10px 10px 4px 10px;border:1px solid #e0e0e0;line-height:22px;color:#555;}.hdp .fr a{margin-right:10px;} |
|||
.ttit{border-left:2px solid #f60;padding-left:8px;margin-right:8px;line-height:16px;margin-bottom:5px;} |
|||
.titem{padding-bottom:10px;border-bottom:1px dotted #e0e0e0;margin-bottom:10px;} |
|||
.iad1{height:60px;overflow:hidden;margin-top:8px;} |
|||
|
|||
.rtags a{margin-right:10px;line-height:1.5;} |
|||
.bqtag{border-bottom:1px #EAEAEA solid;padding:15px 0 20px;}.bqtag strong{color:#000;font:300 22px/36px 'Microsoft YaHei';}.bqtag a{margin-right:24px;font:14px/36px 'Tahoma';color:#333;display:inline-block;} |
|||
|
|||
.zmBox li{width:23px;height:23px;float:left;margin-bottom:5px;} |
|||
.zmBox li a{width:100%;height:00%;display:block;text-align:center;color:#333;font:300 12px/22px 'Tahoma';} |
|||
.nameBox{margin-top:25px;padding:0 6px;} |
|||
.nameBox .name{padding:26px 0 32px;border-bottom:1px #EAEAEA solid;} |
|||
.nameBox .name h3 a{width:36px;height:36px;color:#333;font:300 22px/36px 'Tahoma';background:#EAEAEA;display:block;text-align:center;text-decoration:none;} |
|||
.nameBox .name ul{margin-top:24px;} |
|||
.nameBox .name li{display:inline;display:inline-block;margin-right:24px;} |
|||
.nameBox .name li a{font:14px/36px 'Tahoma';color:#333;display:inline-block;} |
|||
|
|||
#footer{text-align:center;margin-bottom:5px;margin-top:10px;color:#5D5D5D;} |
|||
.tm{overflow:hidden;position:fixed;left:1px;bottom:15px;z-index:999;_position:absolute;} |
|||
|
|||
.labels a{padding:0 8px;border:1px solid #e5e5e5;color:#2393df;margin-right:5px;display:inline-block;height:20px;line-height:20px;}.labels a:hover{background-color:#2393df;color:#fff;border:1px solid #2393df;} |
|||
#iadimg{height:280px;width:100%;display:block;}.zdes{margin-bottom:8px;} |
|||
.uzlist{padding-left:5px;}.uzlist li{padding-left:30px;position:relative;line-height:38px;height:38px;overflow:hidden;}.side .uzlist{margin-top:-5px;} |
|||
.uzlist li .num{position:absolute;left:0;width:20px;height:20px;text-align:center;line-height:20px;top:9px;font-size:16px;color:#22ac38;} |
|||
.uzlist li .top3{background:#22ac38;color:#fff;}.uzlist li a{color:#333;font-size:16px;display:block;overflow:hidden;} |
|||
.readmore a{display:block;height:42px;line-height:42px;text-align:center;background:#f4f4f4;font-size:18px;color:#333;}.readmore a:hover{background:#22ac38;color:#fff;} |
|||
|
|||
/*==========right images==========*/ |
|||
.hotPic{margin-top:15px;margin-right:-20px;}.hotPic img{display:block;height:105px;width:140px;} |
|||
.hotPic li{margin-right:20px;margin-bottom:5px;float:left;overflow:hidden;width:140px;} |
|||
.hotPic span{height:30px;line-height:28px;text-align:center;padding-left:5px;padding-right:5px;display:block;overflow:hidden;white-space:nowrap;} |
|||
|
|||
/*TAB标签*/ |
|||
.nTab{background:#22ac38;} |
|||
.nTab .TabTitle{clear:both;height:30px;line-height:30px;overflow:hidden;font-size:14px;color:white;} |
|||
.nTab .TabTitle ul{margin:0;padding:0;} |
|||
.nTab .TabTitle li{float:left;width:84px;cursor:pointer;list-style-type:none;text-align:center;} |
|||
.nTab .TabTitle .active{background:white;color:#22ac38;border-left:1px #ebebeb solid;border-top:1px #ebebeb solid;border-bottom:1px #fff solid;} |
|||
.nTab .TabTitle .normal{background:border-top:1px #ebebeb solid;border-bottom:1px #ebebeb solid;} |
|||
.nTab .TabContent{width:auto;background:#fff;margin:0px auto;padding:10px;border-right:1px #ebebeb solid;border-left:1px #ebebeb solid;padding:5px 5px;overflow:hidden;line-height:23px;} |
|||
.TabContent ul{margin-left:8px;} |
|||
.TabContent ul li{display:inline-block;width:205px;font-size:14px;} |
|||
.TabContent ul p{font-weight:bolder;font-size:14px;margin-top:5px;} |
|||
.none{display:none;} |
|||
|
|||
#hot{border-top-width:3px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:#1A5F97;border-right-color:#ebebeb;border-bottom-color:#ebebeb;border-left-color:#ebebeb;overflow:hidden;} |
|||
#hot h2{font-size:18px;line-height:62px;background-color:#D7E7F7;background-image:url(../images/hot.png);background-repeat:no-repeat;background-position:10px center;height:62px;padding-left:70px;} |
|||
#hot h2 a{color:#000000;}#hot dl{padding:15px;line-height:26px;font-size:16px;color:#777;} |
|||
#hot dl .tags{margin-top:8px;text-decoration:none;line-height:25px;height:25px;overflow:hidden;color:#999999;} |
|||
|
|||
/* pic list */ |
|||
.tcol{font-size:12px;height:60px;line-height:60px;overflow:hidden;font-family:SimSun;}.tcol span.fl{color:#bbb;} |
|||
.tcol .tith{font-weight:normal;color:#ddd;width:250px;} |
|||
.tname{color:#cb44a2;font-size:26px;font-family:SimHei,"Microsoft YaHei";} |
|||
.hname{color:#bbb;letter-spacing:1px;font-size:12px;} |
|||
.tcol .more{font-family:"Microsoft Yahei";color:#666;} |
|||
|
|||
.pul{margin-right:-16px;font-family:SimSun;} |
|||
.pul li{float:left;overflow:hidden;margin-right:16px; margin-bottom:15px;} |
|||
.pul li a{color:#717171;font-size:12px;} |
|||
.pul li a img{width:228px;height:152px;display:block;} |
|||
.pul li a p{width:210px;height:30px;line-height:30px;overflow:hidden;padding:0 9px;}.pul li a:hover p{background-color:#f7f7f7;color:#c39;} |
|||
.pul li span{padding:0 9px;color:#999;font-size:12px;} |
|||
|
|||
.pul2{margin-right:-16px;font-family:SimSun;} |
|||
.pul2 li{float:left;margin-right:16px;margin-bottom:10px;overflow:hidden;} |
|||
.pul2 li a{color:#717171;font-size:12px;font-family:SimSun;} |
|||
.pul2 li a img{width:228px;height:152px;display:block;} |
|||
.pul2 li a p{width:210px;height:43px;line-height:43px;text-align:center;overflow:hidden;background-color:#fff; color:#5d5d5d;padding:0 9px;} |
|||
.pul2 li a:hover p{background-color:#f7f7f7;color:#c39;} |
|||
|
|||
.tagl{font-family:SimSun;font-size:12px;padding:10px 0px;height:25px;line-height:25px;color:#9F9F9F;width:960px;margin:0 auto;}.tagl span{float:right;}.tagl span b{color:#FF5B90;font-weight:normal;} |
|||
.tagsl a{display:inline-block;height:25px;line-height:25px;padding:0px 10px;background-color:#F6F6F6;color:#9F9F9F;}.tagsl a:hover{background-color:#FF5B90;color:#fff;} |
|||
|
|||
.tas{color:#CCC;} |
|||
.tas a{font-size:12px;font-family:SimSun;margin:0 5px; color:#666;padding:5px 10px;border-radius:3px;}.tas a:hover{background:#FF5B90;color:#FFF;} |
|||
|
|||
#selection{border:solid 1px #e1e1e1;padding-bottom:10px;padding-top:10px;clear:both;font-size:12px;color:gray;font-family:Arial,simsun,sans-serif,"宋体";} |
|||
.secitem{clear:both;line-height:24px;overflow:hidden;padding-left:10px;padding-right:10px;} |
|||
.secitem dt{float:left;width:60px;text-align:right;white-space:nowrap;} |
|||
.secitem_brand{width:50px!important;text-align:right!important;} |
|||
.secitem dd{overflow:hidden;display:block;zoom:1;} |
|||
.secitem a{margin-right:10px;color:#25d;}.secitem a:hover{color:red;} |
|||
.secitem span,.secitem a{display:inline-block;float:left;white-space:nowrap;} |
|||
.secitem a.select{color:#333;font-weight:700;text-decoration:none;} |
|||
|
|||
.sbox{width:920px;margin:10px auto 0 auto;overflow:hidden;padding:15px 19px 19px 19px; border:1px solid #E8E8E8;font-family:SimSun;} |
|||
.sbox h1{font-family:"Microsoft Yahei",simsun;font-size:25px;color:#5d5d5d;font-weight:normal;color:#f60;} |
|||
.sbox div.fl{width:670px;overflow:hidden;}.sbox div.fr{width:250px;overflow:hidden;} |
|||
.sinfo{height:30px;line-height:30px;padding-bottom:9px;color:#9f9f9f;font-size:12px;}#nowp{color:#FF5B90;} |
|||
.position{width:960px;margin:10px auto 0 auto;color:#666;} |
|||
|
|||
.pbox{padding-top:20px;text-align:center;width:920px;padding-bottom:10px;border-top:1px solid #e8e8e8;} |
|||
.pbox img{max-width:920px;width:expression(this.width > 920 ? "920px" :this.width);height:auto;} |
|||
.ptext{line-height:22px;text-align:left;}.ptext p{margin-bottom:15px;} |
|||
.stx{height:30px;line-height:30px;padding-top:9px;margin-top:10px;color:#9f9f9f;margin-bottom:-8px;border-top:1px solid #E8E8E8;font-size:12px;} |
|||
.stx p.fl span a{display:inline-block;height:22px;line-height:22px;padding:0px 7px;margin-left:5px;background-color:#F6F6F6;color:#9F9F9F;border-radius:3px; font-size:12px;} |
|||
.stx p.fl span a:hover{background-color:#FF5B90;color:#fff;} |
|||
|
|||
|
|||
/*==========zishiying==========*/ |
|||
@media screen and (min-width:641px) and (max-width:960px){ |
|||
.box{width:640px;margin-left:auto;margin-right:auto;overflow:hidden;} |
|||
.m-sch{width:105px;margin-right:5px;}.m-sch .sch-txt{width:100px;} |
|||
.fl_640,#header,.fr_300{width:100%;} |
|||
#tad,#itad,#footer,#SOHUCS,.nav,.tm,.imglist2,.box .hdp{display:none;} |
|||
} |
|||
|
|||
@media screen and (max-width:640px){ |
|||
body{font-size:14px;font-family:'Microsoft YaHei',Hei,arial,sans-serif;overflow-x:hidden;} |
|||
.box{width:100%;margin-left:auto;margin-right:auto;overflow:hidden;} |
|||
.list{padding:20px 6px;border-bottom:1px solid #e5e5e5;} |
|||
.tit{display:block;font-weight:normal;font-size:20px;line-height:1.2;} |
|||
.list p{margin-top:10px;word-break:break-all;color:#777;font-size:14px;line-height:20px;} |
|||
.info,.dinfo,.list p{font-family:'Microsoft YaHei',Hei,arial,sans-serif;} |
|||
.list .limg{height:52px;width:84px;float:left;margin-right:20px;}.list .limg img{height:52px;width:84px;border:none;} |
|||
.suli .limg{width:60px;height:40px;float:left;margin-right:10px;}.suli .limg img{width:60px;height:40px;border:none;} |
|||
.imglist li,.imglist2 li,.hotPic li{margin-left:1%;margin-right:1%;width:48%;margin-bottom:6px;}.imglist img,.imglist2 img,.hotPic img{height:32vw;width:100%;}.imglist,.imglist2,.hotPic{margin-right:0;} |
|||
|
|||
.tagb{padding:5px 0 8px;} |
|||
.tagb dl{width:100%;padding:0 10px 0 10px;border-right:none;} |
|||
.m-sch{width:105px;margin-right:5px;}.m-sch .sch-txt{width:100px;} |
|||
.arct{font-size:24px;font-weight:600;} |
|||
.content img,#iadimg{width:100%;height:auto;}.line-small .cat-box{width:auto;float:none;margin-right:0px;margin-left:0px;} |
|||
.lmdh,.side,.content,.bread,.arct,.bqtag,.tagb,.cat-box,.line-small,.zinfo,.timely{margin-left:6px;margin-right:6px;} |
|||
.fl_640,#header,.fr_300{width:100%;}.mfl,.mfr{float:none;} |
|||
#tad,#itad,#ztinfo p.fr,.nav,.tm,.notice,#SOHUCS,#ztinfo,.w120,.zstu,.ipage,.line-one-thumbnail,#footer,#akeyword,.box .hdp{display:none;} |
|||
} |
Before Width: 91 | Height: 35 | Size: 1.8 KiB After Width: 80 | Height: 80 | Size: 3.0 KiB |
After Width: 1373 | Height: 727 | Size: 487 KiB |
Before Width: 18 | Height: 12 | Size: 313 B After Width: 18 | Height: 12 | Size: 313 B |
After Width: 800 | Height: 800 | Size: 108 KiB |
Before Width: 18 | Height: 12 | Size: 600 B After Width: 18 | Height: 12 | Size: 600 B |
After Width: 800 | Height: 500 | Size: 144 KiB |
Before Width: 178 | Height: 60 | Size: 13 KiB After Width: 178 | Height: 60 | Size: 13 KiB |
After Width: 1514 | Height: 480 | Size: 330 KiB |
After Width: 1514 | Height: 480 | Size: 161 KiB |
Before Width: 270 | Height: 206 | Size: 61 KiB After Width: 270 | Height: 206 | Size: 61 KiB |
After Width: 960 | Height: 600 | Size: 280 KiB |
After Width: 960 | Height: 800 | Size: 99 KiB |
After Width: 989 | Height: 515 | Size: 475 KiB |
Before Width: 42 | Height: 14 | Size: 284 B After Width: 42 | Height: 14 | Size: 284 B |
Before Width: 960 | Height: 90 | Size: 34 KiB After Width: 960 | Height: 90 | Size: 34 KiB |
After Width: 1500 | Height: 500 | Size: 48 KiB |
After Width: 43 | Height: 793 | Size: 8.7 KiB |
Before Width: 164 | Height: 138 | Size: 3.4 KiB After Width: 164 | Height: 138 | Size: 3.4 KiB |
Before Width: 164 | Height: 138 | Size: 4.8 KiB After Width: 164 | Height: 138 | Size: 4.8 KiB |
Before Width: 100 | Height: 300 | Size: 4.1 KiB After Width: 100 | Height: 300 | Size: 4.1 KiB |
Before Width: 4 | Height: 4 | Size: 1.1 KiB After Width: 4 | Height: 4 | Size: 1.1 KiB |
Before Width: 1024 | Height: 1024 | Size: 20 KiB After Width: 1024 | Height: 1024 | Size: 20 KiB |
Before Width: 148 | Height: 148 | Size: 371 B After Width: 148 | Height: 148 | Size: 371 B |
Before Width: 6 | Height: 7 | Size: 1.1 KiB After Width: 6 | Height: 7 | Size: 1.1 KiB |
Before Width: 8 | Height: 8 | Size: 121 B After Width: 8 | Height: 8 | Size: 121 B |
After Width: 91 | Height: 35 | Size: 1.8 KiB |
Before Width: 164 | Height: 138 | Size: 1.9 KiB After Width: 164 | Height: 138 | Size: 1.9 KiB |
Before Width: 300 | Height: 200 | Size: 4.0 KiB After Width: 300 | Height: 200 | Size: 4.0 KiB |
Before Width: 8 | Height: 8 | Size: 1.1 KiB After Width: 8 | Height: 8 | Size: 1.1 KiB |
Before Width: 8 | Height: 8 | Size: 949 B After Width: 8 | Height: 8 | Size: 949 B |
Before Width: 281 | Height: 985 | Size: 18 KiB After Width: 281 | Height: 985 | Size: 18 KiB |
Before Width: 1300 | Height: 3 | Size: 1.9 KiB After Width: 1300 | Height: 3 | Size: 1.9 KiB |
Before Width: 172 | Height: 912 | Size: 8.2 KiB After Width: 172 | Height: 912 | Size: 8.2 KiB |
Before Width: 1920 | Height: 6 | Size: 1.4 KiB After Width: 1920 | Height: 6 | Size: 1.4 KiB |
Before Width: 119 | Height: 23 | Size: 1.6 KiB After Width: 119 | Height: 23 | Size: 1.6 KiB |
Before Width: 164 | Height: 138 | Size: 1.5 KiB After Width: 164 | Height: 138 | Size: 1.5 KiB |
Before Width: 120 | Height: 98 | Size: 3.4 KiB After Width: 120 | Height: 98 | Size: 3.4 KiB |
@ -1 +1 @@ |
|||
<div id="footer" class="box">© <?php echo sysconfig('CMS_WEBNAME'); ?> 部分文章来源于网络,如果侵犯了您的权益,请<a href="<?php echo route('singlepage', ['id'=>'contact']); ?>">联系我们</a>。<a target="_blank" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/sitemap.xml">网站地图</a><div class="m-auto"><script>count_js();</script></div></div>
|
|||
<footer><p><?php echo sysconfig('CMS_POWERBY'); ?></p></footer>
|
@ -1,5 +1,36 @@ |
|||
<div id="header"><div id="navlink" class="box"><a class="webname" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/"><?php echo sysconfig('CMS_WEBNAME'); ?></a><span class="nav">
|
|||
<?php $posts = dataList('arctype', ['expression'=>[['pid','=',0]], 'orderby'=>['sortrank', 'desc']]); if($posts){foreach ($posts as $row) { ?>
|
|||
<a href="<?php echo get_front_url(array('catid'=>$row['id'],'type'=>'list')); ?>"><?php echo $row['name']; ?></a>
|
|||
<?php }} ?>
|
|||
<script>navjs();</script></span><form method="get" target="_blank" class="m-sch fr" name="formsearch" action="<?php echo sysconfig('CMS_BASEHOST'); ?>/plus/search.php"><input class="sch-txt" name="q" type="text" value="搜索 按Enter键" onfocus="if(value=='搜索 按Enter键') {value=''}" onblur="if(value=='') {value='搜索 按Enter键'}"></form><div class="cl"></div></div></div> |
|||
<div class="navbar-wrapper"> |
|||
<div class="container"> |
|||
<nav class="navbar navbar-inverse navbar-static-top"> |
|||
<div class="container"> |
|||
<div class="navbar-header"> |
|||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> |
|||
<span class="icon-bar"></span> |
|||
<span class="icon-bar"></span> |
|||
<span class="icon-bar"></span> |
|||
</button> |
|||
<a class="navbar-brand" href="<?php echo sysconfig('CMS_BASEHOST'); ?>">首页</a> |
|||
</div> |
|||
<div id="navbar" class="navbar-collapse collapse"> |
|||
<ul class="nav navbar-nav"> |
|||
<li><a href="<?php echo get_front_url(array('catid'=>4,'type'=>'list')); ?>">新闻动态</a></li> |
|||
<li><a href="<?php echo get_front_url(array('catid'=>2,'type'=>'list')); ?>">案例中心</a></li> |
|||
<li><a href="<?php echo get_front_url(array('pagename'=>'contact','type'=>'page')); ?>">联系我们</a></li> |
|||
<li class="dropdown"> |
|||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">关于我们 <span class="caret"></span></a> |
|||
<ul class="dropdown-menu"> |
|||
<li><a href="<?php echo get_front_url(array('pagename'=>'about','type'=>'page')); ?>">公司简介</a></li> |
|||
<li><a href="<?php echo get_front_url(array('pagename'=>'culture','type'=>'page')); ?>">企业文化</a></li> |
|||
</ul> |
|||
</li> |
|||
</ul> |
|||
</div> |
|||
</div> |
|||
</nav> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="jumbotron banner"><div class="container"> |
|||
<h1>全球最大的中文搜索引擎</h1> |
|||
<p>中国最具价值的品牌之一,英国《金融时报》将百度列为“中国十大世界级品牌”,成为这个榜单中最年轻的一家公司,也是唯一一家互联网公司。</p> |
|||
<p><a class="btn btn-success btn-lg" href="<?php echo get_front_url(array('pagename'=>'about','type'=>'page')); ?>" role="button">阅读更多...</a></p> |
|||
</div></div> |
@ -1,62 +1,32 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url=http://m.bnbni.com<?php echo GetCurUrl(); ?>"> |
|||
<title><?php echo $post['seotitle'];if($page!=0){echo ' '.($page+1);} ?></title><meta name="keywords" content="<?php echo $post["keywords"]; ?>" /><meta name="description" content="<?php echo $post["description"]; ?>" /><link rel="stylesheet" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/css/style.css" media="all"><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/jquery.min.js"></script><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/ad.js"></script><script>uaredirect("http://m.bnbni.com/cat{dede:type}[field:ID /]{/dede:type}");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
<title><?php if(empty($post["seotitle"])){echo $post["name"];}else{echo $post["seotitle"];} ?></title>
|
|||
<link rel="stylesheet" href="/css/bootstrap.min.css"><link rel="stylesheet" href="/css/style.css"><script src="/js/jquery.min.js"></script><script src="/js/bootstrap.min.js"></script></head><body> |
|||
|
|||
<div class="box mt10"><div class="fl_640"><div class="zinfo"><h1><?php echo $post['name']; ?></h1><?php if(!empty($post['content'])){echo '<div class="zdes">'.$post['content'].'</div>';} ?></div><div id="lad1"><script>ljs1();</script></div>
|
|||
@include('home.common.header') |
|||
<div class="container"> |
|||
<div class="row row-offcanvas row-offcanvas-right"> |
|||
<div class="col-xs-12 col-sm-9"> |
|||
<div class="bread"><a href="/"><?php echo sysconfig('CMS_INDEXNAME'); ?></a> > <?php echo get_cat_path($post["id"]); ?></div>
|
|||
<h1 class="page-header"><?php echo $post["name"]; ?></h1>
|
|||
|
|||
<?php if(!empty($posts)){foreach($posts as $row){ ?><div class="list"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?>
|
|||
<strong class="tit"><a href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>" target="_blank"><?php echo $row['title']; ?></a></strong><p><?php echo mb_strcut($row['description'],0,150,'UTF-8'); ?>..</p>
|
|||
<div class="info"><span class="fl"><em><?php echo date("m-d H:i",$row['pubdate']); ?></em></span><span class="fr"><em><?php echo $row['click']; ?></em>人阅读</span></div><div class="cl"></div></div><?php }} ?><div id="lad2"><script>ljs2();</script></div>
|
|||
<strong class="tit"><a href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></strong><p><?php echo mb_strcut($row['description'],0,150,'UTF-8'); ?>..</p>
|
|||
<div class="info"><span class="fl"><?php $taglist=taglist($row['id']);if($taglist){foreach($taglist as $row){ ?><a href="<?php echo get_front_url(array("tagid"=>$row['id'],"type"=>'tags')); ?>"><?php echo $row['tag']; ?></a><?php }} ?><em><?php echo date("m-d H:i",$row['pubdate']); ?></em></span><span class="fr"><em><?php echo $row['click']; ?></em>人阅读</span></div><div class="cl"></div></div><?php }} ?><div id="lad2"><script>ljs2();</script></div>
|
|||
|
|||
<div class="pages"><ul><?php echo $pagenav; ?></ul><div class="cl"></div></div><div id="lad3"><script>ljs3();</script></div></div><!-- fl_640 end -->
|
|||
<div class="pages"><ul><?php echo $pagenav; ?></ul><div class="cl"></div></div>
|
|||
|
|||
<div class="fr_300"><div id="rad1"><script>rjs1();</script></div> |
|||
<div class="side"><div class="stit"><h3>热门文章</h3><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['id']; ?>,tuijian:1,mode:1,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<ul class="uli chs" id="xglist"><?php $posts=arclist(array("row"=>5,"typeid"=>$post['id'],"tuijian"=>1));if($posts){foreach($posts as $row){ ?><li><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php }} ?></ul><div class="cl"></div></div>
|
|||
</div><!--/.col-xs-12.col-sm-9--> |
|||
|
|||
<div id="rad3"><script>rjs3();</script></div> |
|||
<div class="side"><div class="stit"><h3>猜你喜欢</h3><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['id']; ?>,mode:2,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<div class="uli2" id="xglike"><?php $posts=arclist(array("row"=>5,"typeid"=>$post['id'],"orderby"=>'rand()'));if($posts){foreach($posts as $row){ ?><div class="suli"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><div class="sulii"><?php if(!empty($row['writer'])){echo '<span class="time">'.$row['writer'].'</span>';}elseif(!empty($row['source'])){echo '<span class="time">'.$row['source'].'</span>';} ?> 阅读(<?php echo $row['click']; ?>)</div><div class="cl"></div></div><?php }} ?><div class="cl"></div></div></div>
|
|||
<div class="col-xs-12 col-sm-3 sidebar-offcanvas" id="sidebar"> |
|||
|
|||
<div class="panel panel-info"> |
|||
<div class="panel-heading">热门推荐</div> |
|||
<div class="list-group"><?php $posts=arclist(array("row"=>5,"typeid"=>$post['id'],"orderby"=>'rand()'));if($posts){foreach($posts as $row){ ?>
|
|||
<a class="list-group-item" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><?php }} ?>
|
|||
</div> |
|||
</div> |
|||
</div><!--/.sidebar-offcanvas--></div><!--/row--> |
|||
|
|||
<div id="rad2"><script>rjs2();</script></div></div><!-- fr_300 end --></div><!-- box end --> |
|||
<script> |
|||
function getmore(condition) |
|||
{ |
|||
var url = "<?php echo sysconfig('CMS_BASEHOST'); ?>/api/listarc"; |
|||
//var typeid = "";
|
|||
$.post(url,condition,function(res){ |
|||
if(res.code==0) |
|||
{ |
|||
var json = res.data; //数组
|
|||
var str = ''; |
|||
$.each(json, function (index) { |
|||
//循环获取数据
|
|||
//var title = json[index].title;
|
|||
if(condition.mode==1) |
|||
{ |
|||
str = str + '<li><a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a></li>'; |
|||
} |
|||
else if(condition.mode==2) |
|||
{ |
|||
var litpic = '';if(json[index].litpic!==''){litpic = '<a class="limg" href="'+json[index].url+'"><img alt="'+json[index].title+'" src="'+json[index].litpic+'"></a>';} |
|||
str = str + '<div class="suli">'+litpic+'<a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a><div class="sulii">阅读('+json[index].click+')</div><div class="cl"></div></div>'; |
|||
} |
|||
}); |
|||
|
|||
if(str!='' && str!=null && condition.mode==1) |
|||
{ |
|||
$('#xglist').html(str); |
|||
} |
|||
else if(str!='' && str!=null && condition.mode==2) |
|||
{ |
|||
$('#xglike').html(str); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
|
|||
} |
|||
},'json'); |
|||
} |
|||
</script> |
|||
</div><!-- /.container --> |
|||
@include('home.common.footer')</body></html> |
@ -1,60 +1,24 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url=http://m.bnbni.com<?php echo GetCurUrl(); ?>"> |
|||
<title><?php if(!empty($post['seotitle'])){echo $post['seotitle'];}elseif(!empty($post['writer'])){echo $post['writertitle'].'_'.sysconfig('CMS_WEBNAME');}else{echo $post['title'].'_'.sysconfig('CMS_WEBNAME');} ?></title><meta name="keywords" content="<?php echo $post["keywords"]; ?>" /><meta name="description" content="<?php echo $post["description"]; ?>" /><link rel="stylesheet" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/css/style.css" media="all"><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/jquery.min.js"></script><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/ad.js"></script><script>uaredirect("http://m.bnbni.com/cat{dede:type}[field:id/]{/dede:type}/id{dede:field name='aid' /}");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
<title><?php echo $post["title"]; ?>_<?php echo sysconfig('CMS_WEBNAME'); ?></title>
|
|||
<link rel="stylesheet" href="/css/bootstrap.min.css"><link rel="stylesheet" href="/css/style.css"><script src="/js/jquery.min.js"></script><script src="/js/bootstrap.min.js"></script></head><body> |
|||
@include('home.common.header') |
|||
<div class="container"><div class="row row-offcanvas row-offcanvas-right"><div class="col-xs-12 col-sm-9"> |
|||
<div class="bread"><a href=""><?php echo sysconfig('CMS_INDEXNAME'); ?></a> > <?php echo get_cat_path($post["typeid"]); ?></div>
|
|||
<h1 class="page-header"><?php echo $post["title"]; ?></h1>
|
|||
<div class="content"><?php echo $post["body"]; ?>
|
|||
<div class="dinfo"><span class="addtime"><?php echo date("Y-m-d",$post["pubdate"]); ?></span>
|
|||
<br><br>下一篇:<?php if($pre){ ?><a href="<?php echo get_front_url(array("id"=>$pre['id'],"catid"=>$pre["typeid"],"type"=>'content')); ?>"><?php echo $pre["title"]; ?></a><?php }else{echo '没有了';} ?><div class="cl"></div></div>
|
|||
</div> |
|||
</div><!--/.col-xs-12.col-sm-9--> |
|||
|
|||
<div class="box mt10"><div class="fl_640"> |
|||
<h1 class="arct"><?php echo $post["title"]; ?></h1><div class="timely"><?php if(!empty($post['writer'])){ echo '<span id="awriter">'.$post['writer'].'</span> '; } ?><span id="atime"><?php echo date("Y-m-d H:i",$post['pubdate']); ?></span> <?php if(!empty($post['source'])){ ?><?php echo '<span id="asource">'.$post['source'].'</span> '; ?><?php } ?><span id="aclick">阅读:<?php echo $post["click"]; ?>次</span> <span id="akeyword">关键词:<?php echo $post["keywords"]; ?></span></div><div class="dad1"><script>djs1();</script></div>
|
|||
<div class="content"><?php echo $post["body"]; ?><div class="dad2"><script>djs2();</script></div>
|
|||
<div class="dinfo"><span class="fr">下一篇:<?php if($pre){ ?><a href="<?php echo get_front_url(array("id"=>$pre['id'],"catid"=>$pre["typeid"],"type"=>'content')); ?>"><?php echo $pre["title"]; ?></a><?php }else{echo '没有了';} ?></span><div class="cl"></div></div>
|
|||
</div><div class="dad3"><script>djs3(<?php echo $post["id"]; ?>);</script></div></div><!-- fl_640 end -->
|
|||
<div class="col-xs-12 col-sm-3 sidebar-offcanvas" id="sidebar"> |
|||
|
|||
<div class="panel panel-info"> |
|||
<div class="panel-heading">热门推荐</div> |
|||
|
|||
<div class="fr_300"><div id="rad1"><script>rjs1();</script></div> |
|||
<div class="side"><div class="stit"><h3>近期文章</h3><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['typeid']; ?>,mode:1,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<ul class="uli chs" id="xglist"><?php $posts=arclist(array("row"=>5,"typeid"=>$post['typeid'],"expression"=>[['id', '<', $pre?$pre['id']:$post["id"]]]));if($posts){foreach($posts as $row){ ?><li><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php }} ?></ul><div class="cl"></div></div>
|
|||
|
|||
<div id="rad3"><script>rjs3();</script></div> |
|||
<div class="side"><div class="stit"><h3>猜你喜欢</h3><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['typeid']; ?>,mode:2,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<div class="uli2" id="xglike"><?php $posts=arclist(array("row"=>5,"typeid"=>$post['typeid'],"orderby"=>'rand()'));foreach($posts as $row){ ?><div class="suli"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><div class="sulii"><?php if(!empty($row['writer'])){echo '<span class="time">'.$row['writer'].'</span>';}elseif(!empty($row['source'])){echo '<span class="time">'.$row['source'].'</span>';} ?> 阅读(<?php echo $row['click']; ?>)</div><div class="cl"></div></div><?php } ?><div class="cl"></div></div></div>
|
|||
|
|||
<div id="rad2"><script>rjs2();</script></div></div><!-- fr_300 end --></div><!-- box end --> |
|||
<script> |
|||
function getmore(condition) |
|||
{ |
|||
var url = "<?php echo sysconfig('CMS_BASEHOST'); ?>/api/listarc"; |
|||
//var typeid = "";
|
|||
$.post(url,condition,function(res){ |
|||
if(res.code==0) |
|||
{ |
|||
var json = res.data; //数组
|
|||
var str = ''; |
|||
$.each(json, function (index) { |
|||
//循环获取数据
|
|||
//var title = json[index].title;
|
|||
if(condition.mode==1) |
|||
{ |
|||
str = str + '<li><a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a></li>'; |
|||
} |
|||
else if(condition.mode==2) |
|||
{ |
|||
var litpic = '';if(json[index].litpic!==''){litpic = '<a class="limg" href="'+json[index].url+'"><img alt="'+json[index].title+'" src="'+json[index].litpic+'"></a>';} |
|||
str = str + '<div class="suli">'+litpic+'<a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a><div class="sulii">阅读('+json[index].click+')</div><div class="cl"></div></div>'; |
|||
} |
|||
}); |
|||
|
|||
if(str!='' && str!=null && condition.mode==1) |
|||
{ |
|||
$('#xglist').html(str); |
|||
} |
|||
else if(str!='' && str!=null && condition.mode==2) |
|||
{ |
|||
$('#xglike').html(str); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
|
|||
} |
|||
},'json'); |
|||
} |
|||
</script> |
|||
<div class="list-group"><?php $posts=arclist(array("row"=>5,"typeid"=>$post['typeid'],"expression"=>[['id', '<', $pre?$pre['id']:$post["id"]]]));if($posts){foreach($posts as $row){ ?>
|
|||
<a class="list-group-item" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><?php }} ?>
|
|||
</div> |
|||
</div> |
|||
</div><!--/.sidebar-offcanvas--></div><!--/row--></div><!-- /.container --> |
|||
@include('home.common.footer')</body></html> |
@ -1,66 +1,117 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url=http://m.nbnbk.com/"><link rel="alternate" media="only screen and (max-width: 640px)" href="http://m.nbnbk.com/" /> |
|||
<title><?php echo sysconfig('CMS_SEOTITLE'); ?></title><meta name="keywords" content="<?php echo sysconfig('CMS_KEYWORDS'); ?>" /><meta name="description" content="<?php echo sysconfig('CMS_DESCRIPTION'); ?>" /><link rel="stylesheet" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/css/style.css" media="all"><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/jquery.min.js"></script><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/ad.js"></script><script>uaredirect("http://m.nbnbk.com/");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1"><link href="<?php echo sysconfig('CMS_BASEHOST'); ?>/favicon.ico" type="image/x-icon" rel="shortcut icon"> |
|||
<title><?php echo sysconfig('CMS_WEBNAME'); ?></title>
|
|||
<link rel="stylesheet" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/css/bootstrap.min.css"><link rel="stylesheet" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/css/style.css"><script src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/jquery.min.js"></script><script src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/bootstrap.min.js"></script><script src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/ad.js"></script></head><body> |
|||
|
|||
<div class="box mt10"><div class="fl_640"> |
|||
<?php $posts=arclist(array("row"=>11,"tuijian"=>array('<>',1)));foreach($posts as $row){ ?><div class="list"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?>
|
|||
<strong class="tit"><a href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>" target="_blank"><?php echo $row['title']; ?></a></strong><p><?php echo mb_strcut($row['description'],0,150,'UTF-8'); ?>..</p>
|
|||
<div class="info"><span class="fl"><?php if(!empty($row['writer'])){ echo '<i>'.$row['writer'].'</i>'; }elseif(!empty($row['source'])){ echo '<i>'.$row['source'].'</i>'; } ?><em><?php echo date("m-d H:i",$row['pubdate']); ?></em></span><span class="fr"><em><?php echo $row['click']; ?></em>人阅读</span></div><div class="cl"></div></div><?php } ?>
|
|||
@include('home.common.header') |
|||
<div class="container marketing"> |
|||
<div class="row"> |
|||
<div class="col-lg-4"> |
|||
<img class="img-circle" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/images/1.jpg" alt="Generic placeholder image" width="140" height="140"> |
|||
<h2>网页搜索</h2> |
|||
<p>作为全球最大的中文搜索引擎公司,百度一直致力于让网民更便捷地获取信息,</p> |
|||
<p><a class="btn btn-default" href="<?php echo get_front_url(array("id"=>1,"type"=>'content')); ?>" role="button">更多详情 »</a></p> |
|||
</div><!-- /.col-lg-4 --> |
|||
<div class="col-lg-4"> |
|||
<img class="img-circle" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/images/3.jpg" alt="Generic placeholder image" width="140" height="140"> |
|||
<h2>社区产品</h2> |
|||
<p>信息获取的最快捷方式是人与人直接交流,为了让那些对同一个话题感兴趣的人们聚集在一起。</p> |
|||
<p><a class="btn btn-default" href="<?php echo get_front_url(array("id"=>2,"type"=>'content')); ?>" role="button">更多详情 »</a></p> |
|||
</div><!-- /.col-lg-4 --> |
|||
<div class="col-lg-4"> |
|||
<img class="img-circle" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/images/4.jpg" alt="Generic placeholder image" width="140" height="140"> |
|||
<h2>电子商务</h2> |
|||
<p>基于百度独有的搜索技术和强大社区资源,百度有啊突破性实现了网络交易和网络社区的无缝结合。</p> |
|||
<p><a class="btn btn-default" href="<?php echo get_front_url(array("id"=>3,"type"=>'content')); ?>" role="button">更多详情 »</a></p> |
|||
</div><!-- /.col-lg-4 --> |
|||
</div><!-- /.row --> |
|||
|
|||
<div id="iad3"><script>ijs3();</script></div></div><!-- fl_640 end --> |
|||
<!-- START THE FEATURETTES --> |
|||
<hr class="featurette-divider"> |
|||
|
|||
<div class="fr_300"><div id="rad1"><script>rjs1();</script></div> |
|||
<div class="row featurette"> |
|||
<div class="col-md-7"> |
|||
<h2 class="featurette-heading"> <span class="text-muted">主营业务</span></h2> |
|||
<p class="lead">作为全球最大的中文搜索引擎公司,百度一直致力于让网民更便捷地获取信息,找到所求。用户通过百度主页,可以瞬间找到相关的搜索结果, |
|||
这些结果来自于百度超过百亿的中文网页数据库。</p> |
|||
</div> |
|||
<div class="col-md-5"> |
|||
<img class="featurette-image img-responsive center-block" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/images/applead.png" alt="Generic placeholder image"> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="side"><div class="stit"><h2>文章排行</h2><a href="javascript:getmore({PageSize:5,tuijian:1,mode:1,orderby:'rand()',_token:'{{ csrf_token() }}'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<ul class="uli chs" id="xglist"><?php $posts=arclist(array("row"=>5,"tuijian"=>1));foreach($posts as $row){ ?><li><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php } ?></ul><div class="cl"></div></div>
|
|||
<hr class="featurette-divider"> |
|||
|
|||
<div class="side"><div class="stit"><h2>猜你喜欢</h2><a href="javascript:getmore({PageSize:5,mode:2,orderby:'rand()',_token:'{{ csrf_token() }}'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<div class="uli2" id="xglike"><?php $posts=arclist(array("row"=>5,"orderby"=>'rand()'));foreach($posts as $row){ ?><div class="suli"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><div class="sulii"><?php if(!empty($row['writer'])){echo '<span class="time">'.$row['writer'].'</span>';}elseif(!empty($row['source'])){echo '<span class="time">'.$row['source'].'</span>';} ?> 阅读(<?php echo $row['click']; ?>)</div><div class="cl"></div></div><?php } ?><div class="cl"></div></div></div>
|
|||
<div class="row featurette"> |
|||
<div class="col-md-7 col-md-push-5"> |
|||
<h2 class="featurette-heading">人才理念 <span class="text-muted"></span></h2> |
|||
<p class="lead">对于一个人才,我们更多注重的是,你能不能够创造,为自身创造价值,给用户带来更好的体验,这是百度所关心的,所看重的。——李彦宏</p> |
|||
</div> |
|||
<div class="col-md-5 col-md-pull-7"> |
|||
<img class="featurette-image img-responsive center-block" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/images/applead.png" alt="Generic placeholder image"> |
|||
</div> |
|||
</div> |
|||
|
|||
<div id="rad3"><script>rjs3();</script></div> |
|||
<hr class="featurette-divider"> |
|||
|
|||
<div class="side"><div class="stit"><div class="stith"><strong>友情链接</strong></div><div class="cl"></div></div> |
|||
<div class="rtags mt10"><?php $posts=flinklist(array("row"=>5));foreach($posts as $row){ ?><a href="<?php echo $row->url; ?>"><?php echo $row->webname; ?></a><?php } ?></div></div>
|
|||
<div class="row featurette"> |
|||
<div class="col-md-7"> |
|||
<h2 class="featurette-heading">联系我们 <span class="text-muted"></span></h2> |
|||
<p class="lead">地址:北京市海淀区上地十街10号百度大厦,邮编:100085,总机:(+86 10) 5992 8888</p> |
|||
</div> |
|||
<div class="col-md-5"> |
|||
<img class="featurette-image img-responsive center-block" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/images/applead.png" alt="Generic placeholder image"> |
|||
</div> |
|||
</div> |
|||
|
|||
<div id="rad2"><script>rjs2();</script></div></div><!-- fr_300 end --></div><!-- box end --> |
|||
<hr class="featurette-divider"> |
|||
|
|||
<div class="row"> |
|||
<?php $posts=arclist(array("row"=>3,"tuijian"=>1,"typeid"=>4));foreach($posts as $row){ ?>
|
|||
<div class="col-lg-4"> |
|||
<h2><?php echo $row['title']; ?></h2>
|
|||
<p><?php echo mb_strcut($row['description'],0,150,'UTF-8'); ?></p>
|
|||
<p><a class="btn btn-primary" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>" role="button">View details »</a></p> |
|||
</div><?php } ?>
|
|||
</div> |
|||
|
|||
<div class="bs-docs-featurette"> |
|||
<div class="container"> |
|||
<h2 class="bs-docs-featurette-title">案例中心/Case Show</h2> |
|||
<p class="lead">我们在这里展示了许多精美的案例,欢迎欣赏。</p> |
|||
|
|||
<hr class="half-rule"> |
|||
|
|||
<div class="row"> |
|||
<?php $posts=arclist(array("row"=>4,"tuijian"=>1,"typeid"=>2,"expression"=>[["litpic","<>","''"]]));foreach($posts as $row){ ?>
|
|||
<div class="col-xs-6 col-sm-3" style="margin-bottom:15px;"> |
|||
<a href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"> |
|||
<img src="<?php echo $row['litpic']; ?>" alt="<?php echo $row['title']; ?>" class="imgzsy"> |
|||
</a> |
|||
</div> |
|||
<?php } ?>
|
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
<!-- <div class="searchbox row" style="text-align:center;padding-bottom:50px;"> |
|||
<form class="form-inline" method="get" action="/search" role="form"> |
|||
<div class="form-group"> |
|||
<input type="text" class="form-control" id="keyword" name="keyword" placeholder="请输入关键词..."> |
|||
</div> |
|||
<button type="submit" class="btn btn-success">搜索一下</button> |
|||
</form> |
|||
</div> --> |
|||
|
|||
<div class="row"> |
|||
友情链接: |
|||
<?php $posts=arclist(array("table"=>"friendlink","row"=>5));foreach($posts as $row){ ?>
|
|||
<a href="<?php echo $row['url']; ?>"><?php echo $row['webname']; ?></a>
|
|||
<?php } ?></div>
|
|||
</div><!-- /.container --> |
|||
<script> |
|||
function getmore(condition) |
|||
{ |
|||
var url = "<?php echo sysconfig('CMS_BASEHOST'); ?>/api/listarc"; |
|||
//var typeid = "";
|
|||
$.post(url,condition,function(res){ |
|||
if(res.code==0) |
|||
{ |
|||
var json = res.data; //数组
|
|||
var str = ''; |
|||
$.each(json, function (index) { |
|||
//循环获取数据
|
|||
//var title = json[index].title;
|
|||
if(condition.mode==1) |
|||
{ |
|||
str = str + '<li><a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a></li>'; |
|||
} |
|||
else if(condition.mode==2) |
|||
{ |
|||
var litpic = '';if(json[index].litpic!==''){litpic = '<a class="limg" href="'+json[index].url+'"><img alt="'+json[index].title+'" src="'+json[index].litpic+'"></a>';} |
|||
str = str + '<div class="suli">'+litpic+'<a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a><div class="sulii">阅读('+json[index].click+')</div><div class="cl"></div></div>'; |
|||
} |
|||
}); |
|||
|
|||
if(str!='' && str!=null && condition.mode==1) |
|||
{ |
|||
$('#xglist').html(str); |
|||
} |
|||
else if(str!='' && str!=null && condition.mode==2) |
|||
{ |
|||
$('#xglike').html(str); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
|
|||
} |
|||
},'json'); |
|||
} |
|||
$(function(){ |
|||
$(".imgzsy").height(function(){return $(this).width()*2/3;}); |
|||
}); |
|||
</script> |
|||
@include('home.common.footer')</body></html> |
@ -1,8 +1,30 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url="> |
|||
<title><?php if(empty($post["seotitle"])){echo $post["title"];}else{echo $post["seotitle"];} ?>_<?php echo sysconfig('CMS_WEBNAME'); ?></title><meta name="keywords" content="<?php echo $post["keywords"]; ?>" /><meta name="description" content="<?php echo $post["description"]; ?>" /><link rel="stylesheet" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/css/style.css" media="all"><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/ad.js"></script><script>uaredirect("http://m.bnbni.com/cat{dede:type}[field:id/]{/dede:type}/id{dede:field name='aid' /}");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
|
|||
<div class="box mt10"> |
|||
<h1 class="arct" style="text-align:center"><?php echo $post["title"]; ?></h1><div class="dad1"><script>djs1();</script></div>
|
|||
<div class="content"><?php echo $post["body"]; ?><div class="dad2"><script>djs2();</script></div></div>
|
|||
</div><!-- box end -->@include('home.common.footer')</body></html> |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
<title><?php if(empty($post["seotitle"])){echo $post["title"];}else{echo $post["seotitle"];} ?>_<?php echo sysconfig('CMS_WEBNAME'); ?></title>
|
|||
<link rel="stylesheet" href="/css/bootstrap.min.css"><link rel="stylesheet" href="/css/style.css"><script src="/js/jquery.min.js"></script><script src="/js/bootstrap.min.js"></script></head><body> |
|||
|
|||
@include('home.common.header') |
|||
<div class="container"> |
|||
<div class="row row-offcanvas row-offcanvas-right"> |
|||
<div class="col-xs-12 col-sm-9"> |
|||
<div class="bread"><a href="/">首页</a> > <?php echo $post["title"]; ?></div>
|
|||
|
|||
<h1 class="page-header"><?php echo $post["title"]; ?></h1>
|
|||
<div class="content"><?php echo $post["body"]; ?></div>
|
|||
</div><!--/.col-xs-12.col-sm-9--> |
|||
|
|||
<div class="col-xs-12 col-sm-3 sidebar-offcanvas" id="sidebar"> |
|||
|
|||
<div class="panel panel-info"> |
|||
<div class="panel-heading">相关推荐</div> |
|||
|
|||
<div class="list-group"><?php if($posts){foreach($posts as $row){ ?>
|
|||
<a class="list-group-item" href="<?php echo get_front_url(array("pagename"=>$row['filename'],"type"=>'page')); ?>"><?php echo $row['title']; ?></a><?php }} ?>
|
|||
</div> |
|||
|
|||
</div> |
|||
</div><!--/.sidebar-offcanvas--> |
|||
</div><!--/row--> |
|||
|
|||
</div><!-- /.container --> |
|||
@include('home.common.footer')</body></html> |
@ -0,0 +1,25 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
<title><?php echo $post["title"]; ?>_<?php echo sysconfig('CMS_WEBNAME'); ?></title>
|
|||
<link rel="stylesheet" href="/css/bootstrap.min.css"><link rel="stylesheet" href="/css/style.css"><script src="/js/jquery.min.js"></script><script src="/js/bootstrap.min.js"></script></head><body> |
|||
@include('home.common.header') |
|||
<div class="container"><div class="row row-offcanvas row-offcanvas-right"><div class="col-xs-12 col-sm-9"> |
|||
<div class="bread"><a href=""><?php echo sysconfig('CMS_INDEXNAME'); ?></a> > <?php echo get_cat_path($post["typeid"],'product_type','productlist'); ?></div>
|
|||
<h1 class="page-header"><?php echo $post["title"]; ?></h1>
|
|||
<div class="content"><?php echo $post["body"]; ?>
|
|||
<div class="dinfo"><span class="addtime"><?php echo date("Y-m-d",$post["pubdate"]); ?></span>
|
|||
<br><br>下一篇:<?php if($pre){ ?><a href="<?php echo get_front_url(array("id"=>$pre['id'],"catid"=>$pre["typeid"],"type"=>'productdetail')); ?>"><?php echo $pre["title"]; ?></a><?php }else{echo '没有了';} ?><div class="cl"></div></div>
|
|||
</div> |
|||
</div><!--/.col-xs-12.col-sm-9--> |
|||
|
|||
<div class="col-xs-12 col-sm-3 sidebar-offcanvas" id="sidebar"> |
|||
<div class="panel panel-info"> |
|||
<div class="panel-heading"><strong>商品详情</strong></div> |
|||
|
|||
<ul class="list-group"> |
|||
<?php if($post["litpic"]){ ?><li class="list-group-item"><img src="<?php echo $post["litpic"]; ?>" width=100% height=auto></li><?php } ?>
|
|||
<li class="list-group-item"><span class="badge ">¥ <?php echo $post["price"]; ?></span>商品价格</li>
|
|||
<li class="list-group-item"><span class="badge"><del>¥ <?php echo $post["origin_price"]; ?></del></span>原价</li>
|
|||
<li class="list-group-item"><span class="badge"><?php echo $post["sales"]; ?></span>销量</li>
|
|||
</ul> |
|||
</div></div><!--/.sidebar-offcanvas--></div><!--/row--></div><!-- /.container --> |
|||
@include('home.common.footer')</body></html> |
@ -0,0 +1,25 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
<title><?php if(empty($post["seotitle"])){echo $post["name"];}else{echo $post["seotitle"];} ?></title>
|
|||
<link rel="stylesheet" href="/css/bootstrap.min.css"><link rel="stylesheet" href="/css/style.css"><script src="/js/jquery.min.js"></script><script src="/js/bootstrap.min.js"></script><script src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/ad.js"></script></head><body> |
|||
|
|||
@include('home.common.header') |
|||
<div class="container"><div class="row"> |
|||
<div class="bread"><a href="<?php echo sysconfig('CMS_BASEHOST'); ?>"><?php echo sysconfig('CMS_INDEXNAME'); ?></a> > <?php echo $post["name"]; ?></div>
|
|||
<?php if($posts){foreach($posts as $row){ ?>
|
|||
<div class="col-xs-6 col-sm-3" style="margin-top:20px;margin-bottom:10px;"> |
|||
<a href="<?php echo get_front_url(array("id"=>$row['id'],"type"=>'productdetail')); ?>" target="_blank"> |
|||
<img src="<?php echo $row['litpic']; ?>" alt="<?php echo $row['title']; ?>" class="imgzsy"> |
|||
<p style="padding-top:10px;"><?php echo $row['title']; ?></p>
|
|||
</a> |
|||
</div> |
|||
<?php }} ?>
|
|||
<br class="cl"> |
|||
<div class="pages"><ul><?php echo $pagenav; ?></ul><div class="cl"></div></div>
|
|||
</div></div><!-- /.container --> |
|||
<script> |
|||
$(function(){ |
|||
$(".imgzsy").height(function(){return $(this).width()*2/3;}); |
|||
}); |
|||
</script> |
|||
@include('home.common.footer')</body></html> |
@ -1,62 +1,29 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url=http://m.bnbni.com<?php echo GetCurUrl(); ?>"> |
|||
<title><?php if(empty($post["title"])){echo $post["tag"];}else{echo $post["title"];}if($page!=0){echo ' '.($page+1);} ?></title><meta name="keywords" content="<?php echo $post["keywords"]; ?>" /><meta name="description" content="<?php echo $post["description"]; ?>" /><link rel="stylesheet" href="<?php echo CMS_BASEHOST; ?>/images/style.css" media="all"><script type="text/javascript" src="<?php echo CMS_BASEHOST; ?>/js/jquery.min.js"></script><script type="text/javascript" src="<?php echo CMS_BASEHOST; ?>/js/ad.js"></script><script>uaredirect("http://m.bnbni.com/cat{dede:type}[field:ID /]{/dede:type}");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
<title><?php if(empty($post["title"])){echo $post["tag"];}else{echo $post["title"];}if($page!=0){echo ' '.($page+1);} ?></title><meta name="keywords" content="<?php echo $post["keywords"]; ?>" /><meta name="description" content="<?php echo $post["description"]; ?>" />
|
|||
<link rel="stylesheet" href="/css/bootstrap.min.css"><link rel="stylesheet" href="/css/style.css"><script src="/js/jquery.min.js"></script><script src="/js/bootstrap.min.js"></script></head><body> |
|||
|
|||
<div class="box mt10"><div class="fl_640"><div class="zinfo"><h1><?php echo $post["tag"]; ?></h1><?php if(!empty($post['content'])){echo '<div class="zdes">'.$post['content'].'</div>';} ?></div><div id="lad1"><script>ljs1();</script></div>
|
|||
@include('home.common.header') |
|||
<div class="container"> |
|||
<div class="row row-offcanvas row-offcanvas-right"> |
|||
<div class="col-xs-12 col-sm-9"> |
|||
<div class="bread"><a href="/"><?php echo sysconfig('CMS_INDEXNAME'); ?></a> > <a href="<?php echo get_front_url(array("tagid"=>$post['id'],"type"=>'tags')); ?>"><?php echo $post["tag"]; ?></a></div>
|
|||
<h1 class="page-header"><?php echo $post["tag"]; ?></h1>
|
|||
|
|||
<?php if(!empty($posts)){foreach($posts as $row){ ?><div class="list"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?>
|
|||
<strong class="tit"><a href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>" target="_blank"><?php echo $row['title']; ?></a></strong><p><?php echo mb_strcut($row['description'],0,150,'UTF-8'); ?>..</p>
|
|||
<strong class="tit"><a href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></strong><p><?php echo mb_strcut($row['description'],0,150,'UTF-8'); ?>..</p>
|
|||
<div class="info"><span class="fl"><em><?php echo date("m-d H:i",$row['pubdate']); ?></em></span><span class="fr"><em><?php echo $row['click']; ?></em>人阅读</span></div><div class="cl"></div></div><?php }} ?><div id="lad2"><script>ljs2();</script></div>
|
|||
|
|||
<div class="pages"><ul><?php echo $pagenav; ?></ul><div class="cl"></div></div><div id="lad3"><script>ljs3();</script></div></div><!-- fl_640 end -->
|
|||
<div class="pages"><ul><?php echo $pagenav; ?></ul><div class="cl"></div></div>
|
|||
|
|||
<div class="fr_300"><div id="rad1"><script>rjs1();</script></div> |
|||
<div class="side"><div class="stit"><h2>相关推荐</h2><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['id']; ?>,tuijian:1,mode:1,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<ul class="uli chs" id="xglist"><?php $posts=arclist(array("row"=>5,"tuijian"=>1));foreach($posts as $row){ ?><li><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php } ?></ul><div class="cl"></div></div>
|
|||
</div><!--/.col-xs-12.col-sm-9--> |
|||
|
|||
<div id="rad3"><script>rjs3();</script></div> |
|||
<div class="side"><div class="stit"><h2>猜你喜欢</h2><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['id']; ?>,mode:2,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<div class="uli2" id="xglike"><?php $posts=arclist(array("row"=>5,"orderby"=>'rand()'));foreach($posts as $row){ ?><div class="suli"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><div class="sulii"><?php if(!empty($row['writer'])){echo '<span class="time">'.$row['writer'].'</span>';}elseif(!empty($row['source'])){echo '<span class="time">'.$row['source'].'</span>';} ?> 阅读(<?php echo $row['click']; ?>)</div><div class="cl"></div></div><?php } ?><div class="cl"></div></div></div>
|
|||
<div class="col-xs-12 col-sm-3 sidebar-offcanvas" id="sidebar"><div class="panel panel-info"> |
|||
<div class="panel-heading">热门推荐</div> |
|||
<div class="list-group"><?php $posts=arclist(array("row"=>5,"orderby"=>'rand()'));if($posts){foreach($posts as $row){ ?>
|
|||
<a class="list-group-item" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><?php }} ?>
|
|||
</div> |
|||
</div></div><!--/.sidebar-offcanvas--></div><!--/row--> |
|||
|
|||
<div id="rad2"><script>rjs2();</script></div></div><!-- fr_300 end --></div><!-- box end --> |
|||
<script> |
|||
function getmore(condition) |
|||
{ |
|||
var url = "<?php echo CMS_BASEHOST; ?>/api/listarc"; |
|||
//var typeid = "";
|
|||
$.post(url,condition,function(res){ |
|||
if(res.code==0) |
|||
{ |
|||
var json = res.data; //数组
|
|||
var str = ''; |
|||
$.each(json, function (index) { |
|||
//循环获取数据
|
|||
//var title = json[index].title;
|
|||
if(condition.mode==1) |
|||
{ |
|||
str = str + '<li><a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a></li>'; |
|||
} |
|||
else if(condition.mode==2) |
|||
{ |
|||
var litpic = '';if(json[index].litpic!==''){litpic = '<a class="limg" href="'+json[index].url+'"><img alt="'+json[index].title+'" src="'+json[index].litpic+'"></a>';} |
|||
str = str + '<div class="suli">'+litpic+'<a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a><div class="sulii">阅读('+json[index].click+')</div><div class="cl"></div></div>'; |
|||
} |
|||
}); |
|||
|
|||
if(str!='' && str!=null && condition.mode==1) |
|||
{ |
|||
$('#xglist').html(str); |
|||
} |
|||
else if(str!='' && str!=null && condition.mode==2) |
|||
{ |
|||
$('#xglike').html(str); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
|
|||
} |
|||
},'json'); |
|||
} |
|||
</script> |
|||
</div><!-- /.container --> |
|||
@include('home.common.footer')</body></html> |
@ -0,0 +1,20 @@ |
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> |
|||
<title>您访问的页面不存在或已被删除!</title> |
|||
<style type="text/css"> |
|||
*{padding:0;margin:0;} |
|||
body{background:#fff;font-family:'微软雅黑';color:#333;font-size:16px;}
|
|||
.system-message{padding:24px 48px;margin:5% auto 0 auto;width:600px;} |
|||
.system-message h1{font-size:100px;font-weight:normal;line-height:120px;margin-bottom:12px;} |
|||
.system-message .jump{padding-top:10px} |
|||
.system-message .jump a{color:#333;}
|
|||
.system-message .success,.system-message .error{line-height:1.8em;font-size:36px} |
|||
.system-message .detail{font-size:14px;line-height:20px;margin-top:12px;} |
|||
</style> |
|||
</head><body> |
|||
<div class="system-message"> |
|||
<h1>:(</h1> |
|||
<p class="error">您访问的页面不存在或已被删除!</p> |
|||
<p class="detail"><a href="<?php echo route('home');?>">返回首页</a></p> |
|||
</div> |
|||
</body></html> |
@ -0,0 +1 @@ |
|||
<div id="footer" class="box">© <?php echo sysconfig('CMS_WEBNAME'); ?> 部分文章来源于网络,如果侵犯了您的权益,请<a href="<?php echo route('singlepage', ['id'=>'contact']); ?>">联系我们</a>。<a target="_blank" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/sitemap.xml">网站地图</a><div class="m-auto"><script>count_js();</script></div></div>
|
@ -0,0 +1,5 @@ |
|||
<div id="header"><div id="navlink" class="box"><a class="webname" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/"><?php echo sysconfig('CMS_WEBNAME'); ?></a><span class="nav">
|
|||
<?php $posts = dataList('arctype', ['expression'=>[['pid','=',0]], 'orderby'=>['sortrank', 'desc']]); if($posts){foreach ($posts as $row) { ?>
|
|||
<a href="<?php echo get_front_url(array('catid'=>$row['id'],'type'=>'list')); ?>"><?php echo $row['name']; ?></a>
|
|||
<?php }} ?>
|
|||
<script>navjs();</script></span><form method="get" target="_blank" class="m-sch fr" name="formsearch" action="<?php echo sysconfig('CMS_BASEHOST'); ?>/plus/search.php"><input class="sch-txt" name="q" type="text" value="搜索 按Enter键" onfocus="if(value=='搜索 按Enter键') {value=''}" onblur="if(value=='') {value='搜索 按Enter键'}"></form><div class="cl"></div></div></div> |
@ -0,0 +1,62 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url=http://m.bnbni.com<?php echo GetCurUrl(); ?>"> |
|||
<title><?php echo $post['seotitle'];if($page!=0){echo ' '.($page+1);} ?></title><meta name="keywords" content="<?php echo $post["keywords"]; ?>" /><meta name="description" content="<?php echo $post["description"]; ?>" /><link rel="stylesheet" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/css/style.css" media="all"><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/jquery.min.js"></script><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/ad.js"></script><script>uaredirect("http://m.bnbni.com/cat{dede:type}[field:ID /]{/dede:type}");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
|
|||
<div class="box mt10"><div class="fl_640"><div class="zinfo"><h1><?php echo $post['name']; ?></h1><?php if(!empty($post['content'])){echo '<div class="zdes">'.$post['content'].'</div>';} ?></div><div id="lad1"><script>ljs1();</script></div>
|
|||
|
|||
<?php if(!empty($posts)){foreach($posts as $row){ ?><div class="list"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?>
|
|||
<strong class="tit"><a href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>" target="_blank"><?php echo $row['title']; ?></a></strong><p><?php echo mb_strcut($row['description'],0,150,'UTF-8'); ?>..</p>
|
|||
<div class="info"><span class="fl"><em><?php echo date("m-d H:i",$row['pubdate']); ?></em></span><span class="fr"><em><?php echo $row['click']; ?></em>人阅读</span></div><div class="cl"></div></div><?php }} ?><div id="lad2"><script>ljs2();</script></div>
|
|||
|
|||
<div class="pages"><ul><?php echo $pagenav; ?></ul><div class="cl"></div></div><div id="lad3"><script>ljs3();</script></div></div><!-- fl_640 end -->
|
|||
|
|||
<div class="fr_300"><div id="rad1"><script>rjs1();</script></div> |
|||
<div class="side"><div class="stit"><h3>热门文章</h3><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['id']; ?>,tuijian:1,mode:1,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<ul class="uli chs" id="xglist"><?php $posts=arclist(array("row"=>5,"typeid"=>$post['id'],"tuijian"=>1));if($posts){foreach($posts as $row){ ?><li><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php }} ?></ul><div class="cl"></div></div>
|
|||
|
|||
<div id="rad3"><script>rjs3();</script></div> |
|||
<div class="side"><div class="stit"><h3>猜你喜欢</h3><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['id']; ?>,mode:2,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<div class="uli2" id="xglike"><?php $posts=arclist(array("row"=>5,"typeid"=>$post['id'],"orderby"=>'rand()'));if($posts){foreach($posts as $row){ ?><div class="suli"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><div class="sulii"><?php if(!empty($row['writer'])){echo '<span class="time">'.$row['writer'].'</span>';}elseif(!empty($row['source'])){echo '<span class="time">'.$row['source'].'</span>';} ?> 阅读(<?php echo $row['click']; ?>)</div><div class="cl"></div></div><?php }} ?><div class="cl"></div></div></div>
|
|||
|
|||
<div id="rad2"><script>rjs2();</script></div></div><!-- fr_300 end --></div><!-- box end --> |
|||
<script> |
|||
function getmore(condition) |
|||
{ |
|||
var url = "<?php echo sysconfig('CMS_BASEHOST'); ?>/api/listarc"; |
|||
//var typeid = "";
|
|||
$.post(url,condition,function(res){ |
|||
if(res.code==0) |
|||
{ |
|||
var json = res.data; //数组
|
|||
var str = ''; |
|||
$.each(json, function (index) { |
|||
//循环获取数据
|
|||
//var title = json[index].title;
|
|||
if(condition.mode==1) |
|||
{ |
|||
str = str + '<li><a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a></li>'; |
|||
} |
|||
else if(condition.mode==2) |
|||
{ |
|||
var litpic = '';if(json[index].litpic!==''){litpic = '<a class="limg" href="'+json[index].url+'"><img alt="'+json[index].title+'" src="'+json[index].litpic+'"></a>';} |
|||
str = str + '<div class="suli">'+litpic+'<a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a><div class="sulii">阅读('+json[index].click+')</div><div class="cl"></div></div>'; |
|||
} |
|||
}); |
|||
|
|||
if(str!='' && str!=null && condition.mode==1) |
|||
{ |
|||
$('#xglist').html(str); |
|||
} |
|||
else if(str!='' && str!=null && condition.mode==2) |
|||
{ |
|||
$('#xglike').html(str); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
|
|||
} |
|||
},'json'); |
|||
} |
|||
</script> |
|||
@include('home.common.footer')</body></html> |
@ -0,0 +1,57 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url=http://m.bnbni.com<?php echo GetCurUrl(); ?>"> |
|||
<title><?php echo $post['seotitle'];if($page!=0){echo ' '.($page+1);} ?></title><meta name="keywords" content="<?php echo $post["keywords"]; ?>" /><meta name="description" content="<?php echo $post["description"]; ?>" /><link rel="stylesheet" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/images/style.css" media="all"><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/jquery.min.js"></script><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/ad.js"></script><script>uaredirect("http://m.bnbni.com/cat{dede:type}[field:ID /]{/dede:type}");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
|
|||
<div class="box mt10"><div class="fl_640"><h1 class="arct"><?php echo $post["typename"]; ?></h1>
|
|||
<div class="content"><?php echo $post["content"]; ?></div><div id="lad1"><script>ljs1();</script></div></div><!-- fl_640 end -->
|
|||
|
|||
<div class="fr_300"><div id="rad1"><script>rjs1();</script></div> |
|||
<div class="side"><div class="stit"><h3>热门文章</h3><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['id']; ?>,tuijian:1,mode:1,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<ul class="uli chs" id="xglist"><?php $posts=arclist(array("row"=>5,"typeid"=>$post['id'],"tuijian"=>1));if($posts){foreach($posts as $row){ ?><li><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php }} ?></ul><div class="cl"></div></div>
|
|||
|
|||
<div id="rad3"><script>rjs3();</script></div> |
|||
<div class="side"><div class="stit"><h3>猜你喜欢</h3><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['id']; ?>,mode:2,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<div class="uli2" id="xglike"><?php $posts=arclist(array("row"=>5,"typeid"=>$post['id'],"orderby"=>'rand()'));if($posts){foreach($posts as $row){ ?><div class="suli"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><div class="sulii"><?php if(!empty($row['writer'])){echo '<span class="time">'.$row['writer'].'</span>';}elseif(!empty($row['source'])){echo '<span class="time">'.$row['source'].'</span>';} ?> 阅读(<?php echo $row['click']; ?>)</div><div class="cl"></div></div><?php }} ?><div class="cl"></div></div></div>
|
|||
|
|||
<div id="rad2"><script>rjs2();</script></div></div><!-- fr_300 end --></div><!-- box end --> |
|||
<script> |
|||
function getmore(condition) |
|||
{ |
|||
var url = "<?php echo sysconfig('CMS_BASEHOST'); ?>/api/listarc"; |
|||
//var typeid = "";
|
|||
$.post(url,condition,function(res){ |
|||
if(res.code==0) |
|||
{ |
|||
var json = res.data; //数组
|
|||
var str = ''; |
|||
$.each(json, function (index) { |
|||
//循环获取数据
|
|||
//var title = json[index].title;
|
|||
if(condition.mode==1) |
|||
{ |
|||
str = str + '<li><a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a></li>'; |
|||
} |
|||
else if(condition.mode==2) |
|||
{ |
|||
var litpic = '';if(json[index].litpic!==''){litpic = '<a class="limg" href="'+json[index].url+'"><img alt="'+json[index].title+'" src="'+json[index].litpic+'"></a>';} |
|||
str = str + '<div class="suli">'+litpic+'<a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a><div class="sulii">阅读('+json[index].click+')</div><div class="cl"></div></div>'; |
|||
} |
|||
}); |
|||
|
|||
if(str!='' && str!=null && condition.mode==1) |
|||
{ |
|||
$('#xglist').html(str); |
|||
} |
|||
else if(str!='' && str!=null && condition.mode==2) |
|||
{ |
|||
$('#xglike').html(str); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
|
|||
} |
|||
},'json'); |
|||
} |
|||
</script> |
|||
@include('home.common.footer')</body></html> |
@ -0,0 +1,60 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url=http://m.bnbni.com<?php echo GetCurUrl(); ?>"> |
|||
<title><?php if(!empty($post['seotitle'])){echo $post['seotitle'];}elseif(!empty($post['writer'])){echo $post['writertitle'].'_'.sysconfig('CMS_WEBNAME');}else{echo $post['title'].'_'.sysconfig('CMS_WEBNAME');} ?></title><meta name="keywords" content="<?php echo $post["keywords"]; ?>" /><meta name="description" content="<?php echo $post["description"]; ?>" /><link rel="stylesheet" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/css/style.css" media="all"><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/jquery.min.js"></script><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/ad.js"></script><script>uaredirect("http://m.bnbni.com/cat{dede:type}[field:id/]{/dede:type}/id{dede:field name='aid' /}");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
|
|||
<div class="box mt10"><div class="fl_640"> |
|||
<h1 class="arct"><?php echo $post["title"]; ?></h1><div class="timely"><?php if(!empty($post['writer'])){ echo '<span id="awriter">'.$post['writer'].'</span> '; } ?><span id="atime"><?php echo date("Y-m-d H:i",$post['pubdate']); ?></span> <?php if(!empty($post['source'])){ ?><?php echo '<span id="asource">'.$post['source'].'</span> '; ?><?php } ?><span id="aclick">阅读:<?php echo $post["click"]; ?>次</span> <span id="akeyword">关键词:<?php echo $post["keywords"]; ?></span></div><div class="dad1"><script>djs1();</script></div>
|
|||
<div class="content"><?php echo $post["body"]; ?><div class="dad2"><script>djs2();</script></div>
|
|||
<div class="dinfo"><span class="fr">下一篇:<?php if($pre){ ?><a href="<?php echo get_front_url(array("id"=>$pre['id'],"catid"=>$pre["typeid"],"type"=>'content')); ?>"><?php echo $pre["title"]; ?></a><?php }else{echo '没有了';} ?></span><div class="cl"></div></div>
|
|||
</div><div class="dad3"><script>djs3(<?php echo $post["id"]; ?>);</script></div></div><!-- fl_640 end -->
|
|||
|
|||
<div class="fr_300"><div id="rad1"><script>rjs1();</script></div> |
|||
<div class="side"><div class="stit"><h3>近期文章</h3><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['typeid']; ?>,mode:1,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<ul class="uli chs" id="xglist"><?php $posts=arclist(array("row"=>5,"typeid"=>$post['typeid'],"expression"=>[['id', '<', $pre?$pre['id']:$post["id"]]]));if($posts){foreach($posts as $row){ ?><li><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php }} ?></ul><div class="cl"></div></div>
|
|||
|
|||
<div id="rad3"><script>rjs3();</script></div> |
|||
<div class="side"><div class="stit"><h3>猜你喜欢</h3><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['typeid']; ?>,mode:2,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<div class="uli2" id="xglike"><?php $posts=arclist(array("row"=>5,"typeid"=>$post['typeid'],"orderby"=>'rand()'));foreach($posts as $row){ ?><div class="suli"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><div class="sulii"><?php if(!empty($row['writer'])){echo '<span class="time">'.$row['writer'].'</span>';}elseif(!empty($row['source'])){echo '<span class="time">'.$row['source'].'</span>';} ?> 阅读(<?php echo $row['click']; ?>)</div><div class="cl"></div></div><?php } ?><div class="cl"></div></div></div>
|
|||
|
|||
<div id="rad2"><script>rjs2();</script></div></div><!-- fr_300 end --></div><!-- box end --> |
|||
<script> |
|||
function getmore(condition) |
|||
{ |
|||
var url = "<?php echo sysconfig('CMS_BASEHOST'); ?>/api/listarc"; |
|||
//var typeid = "";
|
|||
$.post(url,condition,function(res){ |
|||
if(res.code==0) |
|||
{ |
|||
var json = res.data; //数组
|
|||
var str = ''; |
|||
$.each(json, function (index) { |
|||
//循环获取数据
|
|||
//var title = json[index].title;
|
|||
if(condition.mode==1) |
|||
{ |
|||
str = str + '<li><a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a></li>'; |
|||
} |
|||
else if(condition.mode==2) |
|||
{ |
|||
var litpic = '';if(json[index].litpic!==''){litpic = '<a class="limg" href="'+json[index].url+'"><img alt="'+json[index].title+'" src="'+json[index].litpic+'"></a>';} |
|||
str = str + '<div class="suli">'+litpic+'<a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a><div class="sulii">阅读('+json[index].click+')</div><div class="cl"></div></div>'; |
|||
} |
|||
}); |
|||
|
|||
if(str!='' && str!=null && condition.mode==1) |
|||
{ |
|||
$('#xglist').html(str); |
|||
} |
|||
else if(str!='' && str!=null && condition.mode==2) |
|||
{ |
|||
$('#xglike').html(str); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
|
|||
} |
|||
},'json'); |
|||
} |
|||
</script> |
|||
@include('home.common.footer')</body></html> |
@ -0,0 +1,66 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url=http://m.nbnbk.com/"><link rel="alternate" media="only screen and (max-width: 640px)" href="http://m.nbnbk.com/" /> |
|||
<title><?php echo sysconfig('CMS_SEOTITLE'); ?></title><meta name="keywords" content="<?php echo sysconfig('CMS_KEYWORDS'); ?>" /><meta name="description" content="<?php echo sysconfig('CMS_DESCRIPTION'); ?>" /><link rel="stylesheet" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/css/style.css" media="all"><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/jquery.min.js"></script><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/ad.js"></script><script>uaredirect("http://m.nbnbk.com/");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
|
|||
<div class="box mt10"><div class="fl_640"> |
|||
<?php $posts=arclist(array("row"=>11,"tuijian"=>array('<>',1)));foreach($posts as $row){ ?><div class="list"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?>
|
|||
<strong class="tit"><a href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>" target="_blank"><?php echo $row['title']; ?></a></strong><p><?php echo mb_strcut($row['description'],0,150,'UTF-8'); ?>..</p>
|
|||
<div class="info"><span class="fl"><?php if(!empty($row['writer'])){ echo '<i>'.$row['writer'].'</i>'; }elseif(!empty($row['source'])){ echo '<i>'.$row['source'].'</i>'; } ?><em><?php echo date("m-d H:i",$row['pubdate']); ?></em></span><span class="fr"><em><?php echo $row['click']; ?></em>人阅读</span></div><div class="cl"></div></div><?php } ?>
|
|||
|
|||
<div id="iad3"><script>ijs3();</script></div></div><!-- fl_640 end --> |
|||
|
|||
<div class="fr_300"><div id="rad1"><script>rjs1();</script></div> |
|||
|
|||
<div class="side"><div class="stit"><h2>文章排行</h2><a href="javascript:getmore({PageSize:5,tuijian:1,mode:1,orderby:'rand()',_token:'{{ csrf_token() }}'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<ul class="uli chs" id="xglist"><?php $posts=arclist(array("row"=>5,"tuijian"=>1));foreach($posts as $row){ ?><li><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php } ?></ul><div class="cl"></div></div>
|
|||
|
|||
<div class="side"><div class="stit"><h2>猜你喜欢</h2><a href="javascript:getmore({PageSize:5,mode:2,orderby:'rand()',_token:'{{ csrf_token() }}'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<div class="uli2" id="xglike"><?php $posts=arclist(array("row"=>5,"orderby"=>'rand()'));foreach($posts as $row){ ?><div class="suli"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><div class="sulii"><?php if(!empty($row['writer'])){echo '<span class="time">'.$row['writer'].'</span>';}elseif(!empty($row['source'])){echo '<span class="time">'.$row['source'].'</span>';} ?> 阅读(<?php echo $row['click']; ?>)</div><div class="cl"></div></div><?php } ?><div class="cl"></div></div></div>
|
|||
|
|||
<div id="rad3"><script>rjs3();</script></div> |
|||
|
|||
<div class="side"><div class="stit"><div class="stith"><strong>友情链接</strong></div><div class="cl"></div></div> |
|||
<div class="rtags mt10"><?php $posts=flinklist(array("row"=>5));foreach($posts as $row){ ?><a href="<?php echo $row->url; ?>"><?php echo $row->webname; ?></a><?php } ?></div></div>
|
|||
|
|||
<div id="rad2"><script>rjs2();</script></div></div><!-- fr_300 end --></div><!-- box end --> |
|||
<script> |
|||
function getmore(condition) |
|||
{ |
|||
var url = "<?php echo sysconfig('CMS_BASEHOST'); ?>/api/listarc"; |
|||
//var typeid = "";
|
|||
$.post(url,condition,function(res){ |
|||
if(res.code==0) |
|||
{ |
|||
var json = res.data; //数组
|
|||
var str = ''; |
|||
$.each(json, function (index) { |
|||
//循环获取数据
|
|||
//var title = json[index].title;
|
|||
if(condition.mode==1) |
|||
{ |
|||
str = str + '<li><a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a></li>'; |
|||
} |
|||
else if(condition.mode==2) |
|||
{ |
|||
var litpic = '';if(json[index].litpic!==''){litpic = '<a class="limg" href="'+json[index].url+'"><img alt="'+json[index].title+'" src="'+json[index].litpic+'"></a>';} |
|||
str = str + '<div class="suli">'+litpic+'<a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a><div class="sulii">阅读('+json[index].click+')</div><div class="cl"></div></div>'; |
|||
} |
|||
}); |
|||
|
|||
if(str!='' && str!=null && condition.mode==1) |
|||
{ |
|||
$('#xglist').html(str); |
|||
} |
|||
else if(str!='' && str!=null && condition.mode==2) |
|||
{ |
|||
$('#xglike').html(str); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
|
|||
} |
|||
},'json'); |
|||
} |
|||
</script> |
|||
@include('home.common.footer')</body></html> |
@ -0,0 +1,171 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
<title>后台登录</title> |
|||
<link rel="stylesheet" href="/css/bootstrap.min.css"><link rel="stylesheet" href="/css/admin.css"><script src="/js/jquery.min.js"></script><script src="/js/ad.js"></script></head><body> |
|||
<style> |
|||
body { |
|||
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; |
|||
font-size: 16px; |
|||
color: #888;
|
|||
line-height: 30px; |
|||
text-align: center; |
|||
background-color: #000;
|
|||
} |
|||
.form-box { |
|||
margin-top: 35px; |
|||
} |
|||
.form-top { |
|||
overflow: hidden; |
|||
padding: 0 25px 15px 25px; |
|||
background: #fff;
|
|||
-moz-border-radius: 4px 4px 0 0; -webkit-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0; |
|||
text-align: left; |
|||
} |
|||
|
|||
.form-top-left { |
|||
float: left; |
|||
width: 75%; |
|||
padding-top: 25px; |
|||
} |
|||
|
|||
.form-top-left h3 { margin-top: 0; |
|||
font-size: 22px; |
|||
font-weight: 300; |
|||
color: #555;
|
|||
line-height: 30px;} |
|||
|
|||
.form-top-right { |
|||
float: left; |
|||
width: 25%; |
|||
padding-top: 5px;margin-top:15px; |
|||
font-size: 66px; |
|||
color: #ddd;
|
|||
text-align: right; |
|||
} |
|||
|
|||
.form-bottom { |
|||
padding: 25px 25px 30px 25px; |
|||
background: #eee;
|
|||
-moz-border-radius: 0 0 4px 4px; -webkit-border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px; |
|||
text-align: left; |
|||
} |
|||
|
|||
.form-bottom form textarea { |
|||
height: 100px; |
|||
} |
|||
|
|||
.form-bottom form button.btn { |
|||
width: 100%; |
|||
} |
|||
|
|||
.form-bottom form .input-error { |
|||
border-color: #4aaf51;
|
|||
} |
|||
|
|||
.social-login { |
|||
margin-top: 35px; |
|||
} |
|||
|
|||
.social-login h3 { |
|||
color: #fff;
|
|||
} |
|||
|
|||
.social-login-buttons { |
|||
margin-top: 25px; |
|||
} |
|||
input[type="text"], input[type="password"], textarea, textarea.form-control { |
|||
height: 50px; |
|||
margin: 0; |
|||
padding: 0 20px; |
|||
vertical-align: middle; |
|||
background: #f8f8f8;
|
|||
border: 3px solid #ddd;
|
|||
font-family: 'Roboto', sans-serif; |
|||
font-size: 16px; |
|||
font-weight: 300; |
|||
line-height: 50px; |
|||
color: #888;
|
|||
-moz-border-radius: 4px; |
|||
-webkit-border-radius: 4px; |
|||
border-radius: 4px; |
|||
-moz-box-shadow: none; |
|||
-webkit-box-shadow: none; |
|||
box-shadow: none; |
|||
-o-transition: all .3s; |
|||
-moz-transition: all .3s; |
|||
-webkit-transition: all .3s; |
|||
-ms-transition: all .3s; |
|||
transition: all .3s; |
|||
} |
|||
button.btn { |
|||
height: 50px; |
|||
margin: 0; |
|||
padding: 0 20px; |
|||
vertical-align: middle; |
|||
background: #4aaf51;
|
|||
border: 0; |
|||
font-family: 'Roboto', sans-serif; |
|||
font-size: 16px; |
|||
font-weight: 300; |
|||
line-height: 50px; |
|||
color: #fff;
|
|||
-moz-border-radius: 4px; |
|||
-webkit-border-radius: 4px; |
|||
border-radius: 4px; |
|||
text-shadow: none; |
|||
-moz-box-shadow: none; |
|||
-webkit-box-shadow: none; |
|||
box-shadow: none; |
|||
-o-transition: all .3s; |
|||
-moz-transition: all .3s; |
|||
-webkit-transition: all .3s; |
|||
-ms-transition: all .3s; |
|||
transition: all .3s; |
|||
} |
|||
button.btn:hover { opacity: 0.6; color: #fff; }
|
|||
</style> |
|||
<div class="container-fluid"> |
|||
<div class="row"> |
|||
<div class="col-sm-6 col-sm-offset-3 form-box"> |
|||
<div class="form-top"> |
|||
<div class="form-top-left"> |
|||
<h3>后台登录</h3> |
|||
<p>请输入您的用户名、密码:</p> |
|||
</div> |
|||
<div class="form-top-right"> |
|||
<i class="glyphicon glyphicon-user"></i> |
|||
</div> |
|||
</div> |
|||
<div class="form-bottom"> |
|||
<form method="post" action="/dologin" class="login-form" role="form"> |
|||
<div class="form-group"> |
|||
<label class="sr-only" for="form-username">Username</label> |
|||
<input type="text" id="username" name="username" placeholder="用户名/邮箱/手机号..." class="form-username form-control"> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label class="sr-only" for="form-password">Password</label> |
|||
<input type="password" id="pwd" name="pwd" placeholder="输入密码..." class="form-password form-control"> |
|||
</div> |
|||
<button type="submit" class="btn">立即登录</button> |
|||
</form> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<script> |
|||
$('.login-form input[type="text"], .login-form input[type="password"], .login-form textarea').on('focus', function() { |
|||
$(this).removeClass('input-error'); |
|||
}); |
|||
|
|||
$('.login-form').on('submit', function(e) { |
|||
$(this).find('input[type="text"], input[type="password"], textarea').each(function(){ |
|||
if( $(this).val() == "" ) { |
|||
e.preventDefault(); |
|||
$(this).addClass('input-error'); |
|||
} |
|||
else { |
|||
$(this).removeClass('input-error'); |
|||
} |
|||
}); |
|||
}); |
|||
</script> |
|||
<script src="/js/bootstrap.min.js"></script></body></html> |
@ -0,0 +1,8 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url="> |
|||
<title><?php if(empty($post["seotitle"])){echo $post["title"];}else{echo $post["seotitle"];} ?>_<?php echo sysconfig('CMS_WEBNAME'); ?></title><meta name="keywords" content="<?php echo $post["keywords"]; ?>" /><meta name="description" content="<?php echo $post["description"]; ?>" /><link rel="stylesheet" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/css/style.css" media="all"><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/ad.js"></script><script>uaredirect("http://m.bnbni.com/cat{dede:type}[field:id/]{/dede:type}/id{dede:field name='aid' /}");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
|
|||
<div class="box mt10"> |
|||
<h1 class="arct" style="text-align:center"><?php echo $post["title"]; ?></h1><div class="dad1"><script>djs1();</script></div>
|
|||
<div class="content"><?php echo $post["body"]; ?><div class="dad2"><script>djs2();</script></div></div>
|
|||
</div><!-- box end -->@include('home.common.footer')</body></html> |
@ -0,0 +1,35 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
<title>搜索结果_<?php echo sysconfig('CMS_WEBNAME'); ?></title>
|
|||
<link rel="stylesheet" href="/css/bootstrap.min.css"><link rel="stylesheet" href="/css/style.css"><script src="/js/jquery.min.js"></script><script src="/js/bootstrap.min.js"></script></head><body> |
|||
|
|||
@include('home.common.header') |
|||
<div class="container"> |
|||
|
|||
<div class="row row-offcanvas row-offcanvas-right"> |
|||
|
|||
<div class="col-xs-12 col-sm-9"> |
|||
<div class="bread"><a href="/"><?php echo CMS_INDEXNAME; ?></a> > <?php echo '搜索结果'; ?></div>
|
|||
<h1 class="page-header">搜索结果</h1> |
|||
|
|||
<?php foreach($posts as $row){ ?><div class="list"><?php if(!empty($row['litpic'])){echo '<a class="limg" href="'.get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')).'"><img alt="'.$row["title"].'" src="'.$row["litpic"].'"></a>';} ?>
|
|||
<strong class="tit"><a href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>" target="_blank"><?php echo $row['title']; ?></a></strong><p><?php echo mb_strcut($row['description'],0,160,'utf-8'); ?></p>
|
|||
<div class="info"><span class="fl"><?php $taglist=taglist($row['id']);foreach($taglist as $row){ ?><a target="_blank" href="<?php echo get_front_url(array("tagid"=>$row['id'],"type"=>'tags')); ?>"><?php echo $row['tag']; ?></a><?php } ?><em><?php echo date("Y-m-d",$row["pubdate"]); ?></em></span><span class="fr"><em><?php echo $row['click']; ?></em>人阅读</span></div><div class="cl"></div></div><?php } ?>
|
|||
|
|||
<div class="pages"><ul><?php echo $pagenav; ?></ul><div class="cl"></div></div>
|
|||
|
|||
</div><!--/.col-xs-12.col-sm-9--> |
|||
|
|||
<div class="col-xs-12 col-sm-3 sidebar-offcanvas" id="sidebar"> |
|||
|
|||
<div class="panel panel-info"> |
|||
<div class="panel-heading">热门推荐</div> |
|||
<div class="list-group"><?php $posts=arclist(array("row"=>5,"orderby"=>'rand()'));foreach($posts as $row){ ?>
|
|||
<a class="list-group-item" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><?php } ?>
|
|||
</div> |
|||
</div> |
|||
</div><!--/.sidebar-offcanvas--> |
|||
</div><!--/row--> |
|||
|
|||
</div><!-- /.container --> |
|||
@include('home.common.footer')</body></html> |
@ -0,0 +1,9 @@ |
|||
<?xml version="1.0" encoding="utf-8"?>
|
|||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> |
|||
<url><loc><?php echo sysconfig('CMS_BASEHOST'); ?>/</loc><changefreq>daily</changefreq><priority>1.0</priority></url>
|
|||
<url><loc><?php echo sysconfig('CMS_BASEHOST'); ?>/contact.html</loc></url>
|
|||
<?php $posts=arclist(array("row"=>300));foreach($posts as $row){ ?><url><loc><?php echo sysconfig('CMS_BASEHOST'); ?><?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?></loc><lastmod><?php echo date("Y-m-d",$row['pubdate']); ?></lastmod><changefreq>monthly</changefreq></url><?php } ?>
|
|||
<?php $posts=arclist(array("row"=>100,"orderby"=>'rand()'));foreach($posts as $row){ ?><url><loc><?php echo sysconfig('CMS_BASEHOST'); ?><?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?></loc><lastmod><?php echo date("Y-m-d",$row['pubdate']); ?></lastmod><changefreq>monthly</changefreq></url><?php } ?>
|
|||
|
|||
<?php $posts=dataList("arctype");foreach($posts as $row){ ?><url><loc><?php echo sysconfig('CMS_BASEHOST'); ?><?php echo get_front_url(array("catid"=>$row['id'],"type"=>'list')); ?></loc></url><?php } ?>
|
|||
</urlset> |
@ -0,0 +1,62 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url=http://m.bnbni.com<?php echo GetCurUrl(); ?>"> |
|||
<title><?php if(empty($post["title"])){echo $post["tag"];}else{echo $post["title"];}if($page!=0){echo ' '.($page+1);} ?></title><meta name="keywords" content="<?php echo $post["keywords"]; ?>" /><meta name="description" content="<?php echo $post["description"]; ?>" /><link rel="stylesheet" href="<?php echo CMS_BASEHOST; ?>/images/style.css" media="all"><script type="text/javascript" src="<?php echo CMS_BASEHOST; ?>/js/jquery.min.js"></script><script type="text/javascript" src="<?php echo CMS_BASEHOST; ?>/js/ad.js"></script><script>uaredirect("http://m.bnbni.com/cat{dede:type}[field:ID /]{/dede:type}");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
|
|||
<div class="box mt10"><div class="fl_640"><div class="zinfo"><h1><?php echo $post["tag"]; ?></h1><?php if(!empty($post['content'])){echo '<div class="zdes">'.$post['content'].'</div>';} ?></div><div id="lad1"><script>ljs1();</script></div>
|
|||
|
|||
<?php if(!empty($posts)){foreach($posts as $row){ ?><div class="list"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?>
|
|||
<strong class="tit"><a href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>" target="_blank"><?php echo $row['title']; ?></a></strong><p><?php echo mb_strcut($row['description'],0,150,'UTF-8'); ?>..</p>
|
|||
<div class="info"><span class="fl"><em><?php echo date("m-d H:i",$row['pubdate']); ?></em></span><span class="fr"><em><?php echo $row['click']; ?></em>人阅读</span></div><div class="cl"></div></div><?php }} ?><div id="lad2"><script>ljs2();</script></div>
|
|||
|
|||
<div class="pages"><ul><?php echo $pagenav; ?></ul><div class="cl"></div></div><div id="lad3"><script>ljs3();</script></div></div><!-- fl_640 end -->
|
|||
|
|||
<div class="fr_300"><div id="rad1"><script>rjs1();</script></div> |
|||
<div class="side"><div class="stit"><h2>相关推荐</h2><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['id']; ?>,tuijian:1,mode:1,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<ul class="uli chs" id="xglist"><?php $posts=arclist(array("row"=>5,"tuijian"=>1));foreach($posts as $row){ ?><li><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php } ?></ul><div class="cl"></div></div>
|
|||
|
|||
<div id="rad3"><script>rjs3();</script></div> |
|||
<div class="side"><div class="stit"><h2>猜你喜欢</h2><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['id']; ?>,mode:2,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<div class="uli2" id="xglike"><?php $posts=arclist(array("row"=>5,"orderby"=>'rand()'));foreach($posts as $row){ ?><div class="suli"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><div class="sulii"><?php if(!empty($row['writer'])){echo '<span class="time">'.$row['writer'].'</span>';}elseif(!empty($row['source'])){echo '<span class="time">'.$row['source'].'</span>';} ?> 阅读(<?php echo $row['click']; ?>)</div><div class="cl"></div></div><?php } ?><div class="cl"></div></div></div>
|
|||
|
|||
<div id="rad2"><script>rjs2();</script></div></div><!-- fr_300 end --></div><!-- box end --> |
|||
<script> |
|||
function getmore(condition) |
|||
{ |
|||
var url = "<?php echo CMS_BASEHOST; ?>/api/listarc"; |
|||
//var typeid = "";
|
|||
$.post(url,condition,function(res){ |
|||
if(res.code==0) |
|||
{ |
|||
var json = res.data; //数组
|
|||
var str = ''; |
|||
$.each(json, function (index) { |
|||
//循环获取数据
|
|||
//var title = json[index].title;
|
|||
if(condition.mode==1) |
|||
{ |
|||
str = str + '<li><a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a></li>'; |
|||
} |
|||
else if(condition.mode==2) |
|||
{ |
|||
var litpic = '';if(json[index].litpic!==''){litpic = '<a class="limg" href="'+json[index].url+'"><img alt="'+json[index].title+'" src="'+json[index].litpic+'"></a>';} |
|||
str = str + '<div class="suli">'+litpic+'<a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a><div class="sulii">阅读('+json[index].click+')</div><div class="cl"></div></div>'; |
|||
} |
|||
}); |
|||
|
|||
if(str!='' && str!=null && condition.mode==1) |
|||
{ |
|||
$('#xglist').html(str); |
|||
} |
|||
else if(str!='' && str!=null && condition.mode==2) |
|||
{ |
|||
$('#xglike').html(str); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
|
|||
} |
|||
},'json'); |
|||
} |
|||
</script> |
|||
@include('home.common.footer')</body></html> |
@ -0,0 +1,58 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url=http://m.bnbni.com<?php echo GetCurUrl(); ?>"> |
|||
<title><?php if(empty($post["title"])){echo $post["tag"];}else{echo $post["title"];}if($page!=0){echo ' '.($page+1);} ?></title><meta name="keywords" content="<?php echo $post["keywords"]; ?>" /><meta name="description" content="<?php echo $post["description"]; ?>" /><link rel="stylesheet" href="<?php echo CMS_BASEHOST; ?>/images/style.css" media="all"><script type="text/javascript" src="<?php echo CMS_BASEHOST; ?>/js/jquery.min.js"></script><script type="text/javascript" src="<?php echo CMS_BASEHOST; ?>/js/ad.js"></script><script>uaredirect("http://m.bnbni.com/cat{dede:type}[field:ID /]{/dede:type}");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
|
|||
<div class="box mt10"><div class="fl_640"><div class="zinfo"><h1><?php echo $post["tag"]; ?></h1><?php if(!empty($post['content'])){echo '<div class="zdes">'.$post['content'].'</div>';} ?></div><div id="lad1"><script>ljs1();</script></div>
|
|||
|
|||
<?php if(!empty($posts)){foreach($posts as $row){ ?><h2 class="tagarct"><?php echo $row["title"]; ?></h2><div class="content"><?php echo $row["body"]; ?></div><?php }} ?><div id="lad2"><script>ljs2();</script></div></div><!-- fl_640 end -->
|
|||
|
|||
<div class="fr_300"><div id="rad1"><script>rjs1();</script></div> |
|||
<div class="side"><div class="stit"><h2>相关推荐</h2><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['id']; ?>,tuijian:1,mode:1,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<ul class="uli chs" id="xglist"><?php $posts=arclist(array("row"=>5,"tuijian"=>1));foreach($posts as $row){ ?><li><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php } ?></ul><div class="cl"></div></div>
|
|||
|
|||
<div id="rad3"><script>rjs3();</script></div> |
|||
<div class="side"><div class="stit"><h2>猜你喜欢</h2><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['id']; ?>,mode:2,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<div class="uli2" id="xglike"><?php $posts=arclist(array("row"=>5,"orderby"=>'rand()'));foreach($posts as $row){ ?><div class="suli"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><div class="sulii"><?php if(!empty($row['writer'])){echo '<span class="time">'.$row['writer'].'</span>';}elseif(!empty($row['source'])){echo '<span class="time">'.$row['source'].'</span>';} ?> 阅读(<?php echo $row['click']; ?>)</div><div class="cl"></div></div><?php } ?><div class="cl"></div></div></div>
|
|||
|
|||
<div id="rad2"><script>rjs2();</script></div></div><!-- fr_300 end --></div><!-- box end --> |
|||
<script> |
|||
function getmore(condition) |
|||
{ |
|||
var url = "<?php echo CMS_BASEHOST; ?>/api/listarc"; |
|||
//var typeid = "";
|
|||
$.post(url,condition,function(res){ |
|||
if(res.code==0) |
|||
{ |
|||
var json = res.data; //数组
|
|||
var str = ''; |
|||
$.each(json, function (index) { |
|||
//循环获取数据
|
|||
//var title = json[index].title;
|
|||
if(condition.mode==1) |
|||
{ |
|||
str = str + '<li><a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a></li>'; |
|||
} |
|||
else if(condition.mode==2) |
|||
{ |
|||
var litpic = '';if(json[index].litpic!==''){litpic = '<a class="limg" href="'+json[index].url+'"><img alt="'+json[index].title+'" src="'+json[index].litpic+'"></a>';} |
|||
str = str + '<div class="suli">'+litpic+'<a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a><div class="sulii">阅读('+json[index].click+')</div><div class="cl"></div></div>'; |
|||
} |
|||
}); |
|||
|
|||
if(str!='' && str!=null && condition.mode==1) |
|||
{ |
|||
$('#xglist').html(str); |
|||
} |
|||
else if(str!='' && str!=null && condition.mode==2) |
|||
{ |
|||
$('#xglike').html(str); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
|
|||
} |
|||
},'json'); |
|||
} |
|||
</script> |
|||
@include('home.common.footer')</body></html> |
@ -0,0 +1,57 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url=http://m.bnbni.com<?php echo GetCurUrl(); ?>"> |
|||
<title><?php if(empty($post["title"])){echo $post["tag"];}else{echo $post["title"];}if($page!=0){echo ' '.($page+1);} ?></title><meta name="keywords" content="<?php echo $post["keywords"]; ?>" /><meta name="description" content="<?php echo $post["description"]; ?>" /><link rel="stylesheet" href="<?php echo CMS_BASEHOST; ?>/images/style.css" media="all"><script type="text/javascript" src="<?php echo CMS_BASEHOST; ?>/js/jquery.min.js"></script><script type="text/javascript" src="<?php echo CMS_BASEHOST; ?>/js/ad.js"></script><script>uaredirect("http://m.bnbni.com/cat{dede:type}[field:ID /]{/dede:type}");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
|
|||
<div class="box mt10"><div class="fl_640"><h1 class="arct"><?php echo $post["tag"]; ?></h1>
|
|||
<div class="content"><?php echo $post["content"]; ?></div><div id="lad1"><script>ljs1();</script></div></div><!-- fl_640 end -->
|
|||
|
|||
<div class="fr_300"><div id="rad1"><script>rjs1();</script></div> |
|||
<div class="side"><div class="stit"><h2>相关推荐</h2><a href="javascript:getmore({PageSize:5,tuijian:1,mode:1,orderby:'rand()',_token:'{{ csrf_token() }}'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<ul class="uli chs" id="xglist"><?php $posts=arclist(array("row"=>5,"tuijian"=>1));foreach($posts as $row){ ?><li><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php } ?></ul><div class="cl"></div></div>
|
|||
|
|||
<div id="rad3"><script>rjs3();</script></div> |
|||
<div class="side"><div class="stit"><h2>猜你喜欢</h2><a href="javascript:getmore({PageSize:5,mode:2,orderby:'rand()',_token:'{{ csrf_token() }}'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<div class="uli2" id="xglike"><?php $posts=arclist(array("row"=>5,"orderby"=>'rand()'));foreach($posts as $row){ ?><div class="suli"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><div class="sulii"><?php if(!empty($row['writer'])){echo '<span class="time">'.$row['writer'].'</span>';}elseif(!empty($row['source'])){echo '<span class="time">'.$row['source'].'</span>';} ?> 阅读(<?php echo $row['click']; ?>)</div><div class="cl"></div></div><?php } ?><div class="cl"></div></div></div>
|
|||
|
|||
<div id="rad2"><script>rjs2();</script></div></div><!-- fr_300 end --></div><!-- box end --> |
|||
<script> |
|||
function getmore(condition) |
|||
{ |
|||
var url = "<?php echo CMS_BASEHOST; ?>/api/listarc"; |
|||
//var typeid = "";
|
|||
$.post(url,condition,function(res){ |
|||
if(res.code==0) |
|||
{ |
|||
var json = res.data; //数组
|
|||
var str = ''; |
|||
$.each(json, function (index) { |
|||
//循环获取数据
|
|||
//var title = json[index].title;
|
|||
if(condition.mode==1) |
|||
{ |
|||
str = str + '<li><a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a></li>'; |
|||
} |
|||
else if(condition.mode==2) |
|||
{ |
|||
var litpic = '';if(json[index].litpic!==''){litpic = '<a class="limg" href="'+json[index].url+'"><img alt="'+json[index].title+'" src="'+json[index].litpic+'"></a>';} |
|||
str = str + '<div class="suli">'+litpic+'<a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a><div class="sulii">阅读('+json[index].click+')</div><div class="cl"></div></div>'; |
|||
} |
|||
}); |
|||
|
|||
if(str!='' && str!=null && condition.mode==1) |
|||
{ |
|||
$('#xglist').html(str); |
|||
} |
|||
else if(str!='' && str!=null && condition.mode==2) |
|||
{ |
|||
$('#xglike').html(str); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
|
|||
} |
|||
},'json'); |
|||
} |
|||
</script> |
|||
@include('home.common.footer')</body></html> |
@ -0,0 +1,7 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url=http://m.bnbni.com/cat{dede:type}[field:id/]{/dede:type}/id{dede:field name='aid' /}"> |
|||
<title>笔记本电脑相关知识_<?php echo sysconfig('CMS_WEBNAME'); ?></title><meta name="keywords" content="" /><meta name="description" content="" /><link rel="stylesheet" href="<?php echo CMS_BASEHOST; ?>/images/style.css" media="all"><script type="text/javascript" src="<?php echo CMS_BASEHOST; ?>/js/ad.js"></script><script>uaredirect("http://m.bnbni.com/cat{dede:type}[field:id/]{/dede:type}/id{dede:field name='aid' /}");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
<div class="box mt10"> |
|||
<div class="ws-tag"><?php $posts=tagslist(); foreach($posts as $row) { ?>
|
|||
<a target="_blank" href="<?php echo get_front_url(array("type"=>"tags","tagid"=>$row["id"])); ?>"><?php echo $row['tag']; ?></a> <?php } ?></div>
|
|||
</div><!-- box end -->@include('home.common.footer')</body></html> |
@ -0,0 +1,20 @@ |
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> |
|||
<title>您访问的页面不存在或已被删除!</title> |
|||
<style type="text/css"> |
|||
*{padding:0;margin:0;} |
|||
body{background:#fff;font-family:'微软雅黑';color:#333;font-size:16px;}
|
|||
.system-message{padding:24px 48px;margin:5% auto 0 auto;width:600px;} |
|||
.system-message h1{font-size:100px;font-weight:normal;line-height:120px;margin-bottom:12px;} |
|||
.system-message .jump{padding-top:10px} |
|||
.system-message .jump a{color:#333;}
|
|||
.system-message .success,.system-message .error{line-height:1.8em;font-size:36px} |
|||
.system-message .detail{font-size:14px;line-height:20px;margin-top:12px;} |
|||
</style> |
|||
</head><body> |
|||
<div class="system-message"> |
|||
<h1>:(</h1> |
|||
<p class="error">您访问的页面不存在或已被删除!</p> |
|||
<p class="detail"><a href="<?php echo route('home');?>">返回首页</a></p> |
|||
</div> |
|||
</body></html> |
@ -0,0 +1 @@ |
|||
<footer><p><?php echo sysconfig('CMS_POWERBY'); ?></p></footer>
|
@ -0,0 +1,6 @@ |
|||
<nav class="mnav-a"><ul class="mnav-m"> |
|||
<li><a class="cur" href="/">首页</a></li> |
|||
<li><a href="<?php echo get_wap_front_url(array('pagename'=>'about','type'=>'page')); ?>">关于我们</a></li> |
|||
<li><a href="<?php echo get_wap_front_url(array('catid'=>4,'type'=>'list')); ?>">新闻中心</a></li> |
|||
<li><a href="<?php echo get_wap_front_url(array('pagename'=>'contact','type'=>'page')); ?>">联系我们</a></li> |
|||
</ul></nav> |
@ -0,0 +1,16 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta name="viewport" content="width=device-width,initial-scale=1.0"> |
|||
<title><?php echo $post["seotitle"];if(!empty($_GET["page"])){echo ' '.$_GET["page"];} ?></title>
|
|||
<meta name="keywords" content="<?php echo $post["keywords"]; ?>"><meta name="description" content="<?php echo $post["description"]; ?>"> |
|||
<link rel="stylesheet" href="/css/wap.css" media="all"></head><body> |
|||
|
|||
<header class="mheader-a"><h2 class="bt"><?php echo sysconfig('CMS_WEBNAME'); ?></h2><a href="javascript:;"><div class="phone-icon telphone"></div></a></header>
|
|||
|
|||
@include('wap.common.header') |
|||
<article class="mbanner-b mb10"><a href=""><img src="/images/banner.jpg"></a></article> |
|||
|
|||
<article class="mbox"> |
|||
<h3 class="tit"><i class="tit_icon"></i><?php echo $post["name"]; ?></h3>
|
|||
<ul class="mnews-b"><?php foreach($posts as $row){ ?><li><span class="group">[<?php echo date("Y-m-d",$row["pubdate"]); ?>]</span><a href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php } ?></ul>
|
|||
<div class="pnav clear"><?php echo $pagenav; ?></div></article>
|
|||
|
|||
</body></html> |
@ -0,0 +1,57 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url=http://m.bnbni.com<?php echo GetCurUrl(); ?>"> |
|||
<title><?php echo $post['seotitle'];if($page!=0){echo ' '.($page+1);} ?></title><meta name="keywords" content="<?php echo $post["keywords"]; ?>" /><meta name="description" content="<?php echo $post["description"]; ?>" /><link rel="stylesheet" href="<?php echo sysconfig('CMS_BASEHOST'); ?>/images/style.css" media="all"><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/jquery.min.js"></script><script type="text/javascript" src="<?php echo sysconfig('CMS_BASEHOST'); ?>/js/ad.js"></script><script>uaredirect("http://m.bnbni.com/cat{dede:type}[field:ID /]{/dede:type}");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
|
|||
<div class="box mt10"><div class="fl_640"><h1 class="arct"><?php echo $post["typename"]; ?></h1>
|
|||
<div class="content"><?php echo $post["content"]; ?></div><div id="lad1"><script>ljs1();</script></div></div><!-- fl_640 end -->
|
|||
|
|||
<div class="fr_300"><div id="rad1"><script>rjs1();</script></div> |
|||
<div class="side"><div class="stit"><h3>热门文章</h3><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['id']; ?>,tuijian:1,mode:1,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<ul class="uli chs" id="xglist"><?php $posts=arclist(array("row"=>5,"typeid"=>$post['id'],"tuijian"=>1));if($posts){foreach($posts as $row){ ?><li><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php }} ?></ul><div class="cl"></div></div>
|
|||
|
|||
<div id="rad3"><script>rjs3();</script></div> |
|||
<div class="side"><div class="stit"><h3>猜你喜欢</h3><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['id']; ?>,mode:2,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<div class="uli2" id="xglike"><?php $posts=arclist(array("row"=>5,"typeid"=>$post['id'],"orderby"=>'rand()'));if($posts){foreach($posts as $row){ ?><div class="suli"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><div class="sulii"><?php if(!empty($row['writer'])){echo '<span class="time">'.$row['writer'].'</span>';}elseif(!empty($row['source'])){echo '<span class="time">'.$row['source'].'</span>';} ?> 阅读(<?php echo $row['click']; ?>)</div><div class="cl"></div></div><?php }} ?><div class="cl"></div></div></div>
|
|||
|
|||
<div id="rad2"><script>rjs2();</script></div></div><!-- fr_300 end --></div><!-- box end --> |
|||
<script> |
|||
function getmore(condition) |
|||
{ |
|||
var url = "<?php echo sysconfig('CMS_BASEHOST'); ?>/api/listarc"; |
|||
//var typeid = "";
|
|||
$.post(url,condition,function(res){ |
|||
if(res.code==0) |
|||
{ |
|||
var json = res.data; //数组
|
|||
var str = ''; |
|||
$.each(json, function (index) { |
|||
//循环获取数据
|
|||
//var title = json[index].title;
|
|||
if(condition.mode==1) |
|||
{ |
|||
str = str + '<li><a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a></li>'; |
|||
} |
|||
else if(condition.mode==2) |
|||
{ |
|||
var litpic = '';if(json[index].litpic!==''){litpic = '<a class="limg" href="'+json[index].url+'"><img alt="'+json[index].title+'" src="'+json[index].litpic+'"></a>';} |
|||
str = str + '<div class="suli">'+litpic+'<a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a><div class="sulii">阅读('+json[index].click+')</div><div class="cl"></div></div>'; |
|||
} |
|||
}); |
|||
|
|||
if(str!='' && str!=null && condition.mode==1) |
|||
{ |
|||
$('#xglist').html(str); |
|||
} |
|||
else if(str!='' && str!=null && condition.mode==2) |
|||
{ |
|||
$('#xglike').html(str); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
|
|||
} |
|||
},'json'); |
|||
} |
|||
</script> |
|||
@include('home.common.footer')</body></html> |
@ -0,0 +1,66 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta name="viewport" content="width=device-width,initial-scale=1.0"> |
|||
<title><?php echo $post["title"]; ?>_<?php echo sysconfig('CMS_WEBNAME'); ?></title><link rel="stylesheet" href="/css/wap.css" media="all"><script type="text/javascript" src="/js/jquery.min.js"></script></head><body>
|
|||
|
|||
<header class="mheader-a"><h2 class="bt"><?php echo sysconfig('CMS_WEBNAME'); ?></h2><a href="javascript:;"><div class="phone-icon telphone"></div></a></header>
|
|||
|
|||
@include('wap.common.header') |
|||
<article class="mbanner-b mb10"><a href=""><img src="/images/banner.jpg"></a></article> |
|||
|
|||
<article class="mbox cinfo"><h1 class="tith"><?php echo $post["title"]; ?></h1>
|
|||
<div class="mabout-a"><p>时间:<?php echo date("Y-m-d",$post["pubdate"]); ?></p><?php echo $post["body"]; ?>
|
|||
<br>下一篇:<?php if($pre){ ?><a href="<?php echo get_front_url(array("id"=>$pre['id'],"type"=>'content')); ?>"><?php echo $pre["title"]; ?></a><?php }else{echo '没有了';} ?></div></article>
|
|||
|
|||
<article class="mbox"><h3 class="tit"><i class="tit_icon"></i>相关推荐</h3><ul class="mnews-b" id="ajlist"><?php $posts=arclist(array("row"=>5,"typeid"=>$post["typeid"],"orderby"=>'rand()'));foreach($posts as $row){ ?>
|
|||
<li><span class="group">[<?php echo date("Y-m-d",$row['pubdate']); ?>]</span><a href="<?php echo get_front_url(array("id"=>$row['id'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php } ?>
|
|||
</ul><div class="about-more more mt10"><a id="listbu" href="javascript:;">查看更多<i class="phone-icon mico"></i></a></div></article> |
|||
|
|||
<script> |
|||
$(function(){ |
|||
var page = 2; |
|||
$('#listbu').click(function(){ |
|||
$.ajax({ |
|||
url: "<?php echo route('api_listarc'); ?>", |
|||
dataType: "json", |
|||
type: "POST", |
|||
data: { |
|||
"_token":'{{ csrf_token() }}', |
|||
"typeid":<?php echo $post["typeid"] ?>,
|
|||
"PageIndex":page, |
|||
"PageSize":5 |
|||
}, |
|||
success: function(data){ |
|||
if(data.code==0) |
|||
{ |
|||
var json = data.data; //数组
|
|||
var str = ''; |
|||
$.each(json, function (index) { |
|||
//循环获取数据
|
|||
var title = json[index].title; |
|||
var id = json[index].id; |
|||
var url = json[index].url; |
|||
var pubdate = json[index].pubdate; |
|||
|
|||
str = str + '<li><span class="group">['+pubdate+']</span><a href="'+url+'" target="_blank">'+title+'</a></li>'; |
|||
}); |
|||
|
|||
if(str!='') |
|||
{ |
|||
$('#ajlist').append(str); |
|||
} |
|||
else |
|||
{ |
|||
$('#listbu').text("亲,没有啦!"); |
|||
} |
|||
|
|||
} |
|||
else |
|||
{ |
|||
|
|||
} |
|||
} |
|||
}); |
|||
page++; |
|||
}); |
|||
}); |
|||
</script> |
|||
</body></html> |
@ -0,0 +1,83 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta name="viewport" content="width=device-width,initial-scale=1.0"> |
|||
<title><?php echo sysconfig('CMS_WEBNAME'); ?></title><link href="/favicon.ico" type="image/x-icon" rel="shortcut icon">
|
|||
<link rel="stylesheet" href="/css/wap.css" media="all"><script type="text/javascript" src="/js/jquery.min.js"></script></head><body> |
|||
|
|||
<header class="mheader-a"><h2 class="bt"><?php echo sysconfig('CMS_WEBNAME'); ?></h2><a href="javascript:;"><div class="phone-icon telphone"></div></a></header>
|
|||
|
|||
@include('wap.common.header') |
|||
<article class="mbanner-b mb10"><a href=""><img src="/images/banner.jpg"></a></article> |
|||
|
|||
<article class="mbox"><h3 class="tit"><i class="tit_icon"></i>产品中心</h3><div class="mpicshow-b"> |
|||
<ul class="mnewpic2"><?php $posts=arclist(array("table"=>"product","row"=>4,"typeid"=>1,"expression"=>[["litpic","<>","''"]]));if($posts){foreach($posts as $row){ ?>
|
|||
<li><a href="<?php echo get_wap_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img src="<?php echo sysconfig('CMS_BASEHOST'); echo $row['litpic']; ?>" alt="<?php echo $row['title']; ?>"></a></li><?php }} ?>
|
|||
</ul><div class="more"><a href="<?php echo get_wap_front_url(array('catid'=>1,'type'=>'productlist')); ?>">查看更多<i class="mico"></i></a></div> |
|||
</div></article> |
|||
|
|||
<article class="mbox cinfo"> |
|||
<h3 class="tit"><i class="tit_icon"></i>企业简介</h3><div class="mabout-a">百度,全球最大的中文搜索引擎、最大的中文网站。2000年1月创立于北京中关村。</div> |
|||
<div class="about-more more"><a href="<?php echo get_wap_front_url(array('pagename'=>'about','type'=>'page')); ?>">查看更多<i class="phone-icon mico"></i></a></div> |
|||
</article> |
|||
|
|||
<article class="mbox"><h3 class="tit"><i class="tit_icon"></i>新闻中心</h3><ul class="mnews-b" id="ajlist"><?php $posts=arclist(array("row"=>8));if($posts){foreach($posts as $row){ ?>
|
|||
<li><span class="group">[<?php echo date("Y-m-d",$row['pubdate']); ?>]</span><a href="<?php echo get_wap_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php }} ?>
|
|||
</ul><div class="about-more more mt10"><a id="listbu" href="javascript:;">查看更多<i class="phone-icon mico"></i></a></div></article> |
|||
|
|||
<article class="mbox"><h3 class="tit"><i class="tit_icon"></i>联系我们</h3><ul class="mcontact-a"> |
|||
<li>联系人:<span name="moduleCate">王经理</span></li> |
|||
<li>电子邮箱:<span name="moduleCate">790238877@qq.com</span></li> |
|||
<li>联系方式:<span class="num">15280795142</span><a href="tel://10086" class="telbg"><i class="phone-icon tel"></i><span class="num_in">10086</span></a></li> |
|||
<li>联系方式:<span class="num">0374-59928888</span><a href="tel://15280795142" class="telbg"><i class="phone-icon tel"></i><span class="num_in">0374-7333112</span></a></li> |
|||
<li>联系地址:<span name="moduleCate">北京市海淀区上地十街10号百度大厦</span><a href="javascript:;" class="addressbg"><em class="phone-icon pint"></em></a></li> |
|||
<li>邮编:<span name="moduleCate">100085</span></li> |
|||
</ul></article> |
|||
|
|||
<script> |
|||
$(function(){ |
|||
var page = 1; |
|||
$('#listbu').click(function(){ |
|||
$.ajax({ |
|||
url: "<?php echo route('api_listarc'); ?>", |
|||
dataType: "json", |
|||
type: "POST", |
|||
data: { |
|||
"_token":'{{ csrf_token() }}', |
|||
"typeid":4, |
|||
"PageIndex":page, |
|||
"PageSize":10 |
|||
}, |
|||
success: function(data){ |
|||
if(data.code==0) |
|||
{ |
|||
var json = data.data; //数组
|
|||
var str = ''; |
|||
$.each(json, function (index) { |
|||
//循环获取数据
|
|||
var title = json[index].title; |
|||
var id = json[index].id; |
|||
var url = json[index].url; |
|||
var pubdate = json[index].pubdate; |
|||
|
|||
str = str + '<li><span class="group">['+pubdate+']</span><a href="'+url+'" target="_blank">'+title+'</a></li>'; |
|||
}); |
|||
|
|||
if(str!='') |
|||
{ |
|||
$('#ajlist').append(str); |
|||
} |
|||
else |
|||
{ |
|||
$('#listbu').text("亲,没有啦!"); |
|||
} |
|||
|
|||
} |
|||
else |
|||
{ |
|||
|
|||
} |
|||
} |
|||
}); |
|||
page++; |
|||
}); |
|||
}); |
|||
</script> |
|||
</body></html> |
@ -0,0 +1,171 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
<title>后台登录</title> |
|||
<link rel="stylesheet" href="/css/bootstrap.min.css"><link rel="stylesheet" href="/css/admin.css"><script src="/js/jquery.min.js"></script><script src="/js/ad.js"></script></head><body> |
|||
<style> |
|||
body { |
|||
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; |
|||
font-size: 16px; |
|||
color: #888;
|
|||
line-height: 30px; |
|||
text-align: center; |
|||
background-color: #000;
|
|||
} |
|||
.form-box { |
|||
margin-top: 35px; |
|||
} |
|||
.form-top { |
|||
overflow: hidden; |
|||
padding: 0 25px 15px 25px; |
|||
background: #fff;
|
|||
-moz-border-radius: 4px 4px 0 0; -webkit-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0; |
|||
text-align: left; |
|||
} |
|||
|
|||
.form-top-left { |
|||
float: left; |
|||
width: 75%; |
|||
padding-top: 25px; |
|||
} |
|||
|
|||
.form-top-left h3 { margin-top: 0; |
|||
font-size: 22px; |
|||
font-weight: 300; |
|||
color: #555;
|
|||
line-height: 30px;} |
|||
|
|||
.form-top-right { |
|||
float: left; |
|||
width: 25%; |
|||
padding-top: 5px;margin-top:15px; |
|||
font-size: 66px; |
|||
color: #ddd;
|
|||
text-align: right; |
|||
} |
|||
|
|||
.form-bottom { |
|||
padding: 25px 25px 30px 25px; |
|||
background: #eee;
|
|||
-moz-border-radius: 0 0 4px 4px; -webkit-border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px; |
|||
text-align: left; |
|||
} |
|||
|
|||
.form-bottom form textarea { |
|||
height: 100px; |
|||
} |
|||
|
|||
.form-bottom form button.btn { |
|||
width: 100%; |
|||
} |
|||
|
|||
.form-bottom form .input-error { |
|||
border-color: #4aaf51;
|
|||
} |
|||
|
|||
.social-login { |
|||
margin-top: 35px; |
|||
} |
|||
|
|||
.social-login h3 { |
|||
color: #fff;
|
|||
} |
|||
|
|||
.social-login-buttons { |
|||
margin-top: 25px; |
|||
} |
|||
input[type="text"], input[type="password"], textarea, textarea.form-control { |
|||
height: 50px; |
|||
margin: 0; |
|||
padding: 0 20px; |
|||
vertical-align: middle; |
|||
background: #f8f8f8;
|
|||
border: 3px solid #ddd;
|
|||
font-family: 'Roboto', sans-serif; |
|||
font-size: 16px; |
|||
font-weight: 300; |
|||
line-height: 50px; |
|||
color: #888;
|
|||
-moz-border-radius: 4px; |
|||
-webkit-border-radius: 4px; |
|||
border-radius: 4px; |
|||
-moz-box-shadow: none; |
|||
-webkit-box-shadow: none; |
|||
box-shadow: none; |
|||
-o-transition: all .3s; |
|||
-moz-transition: all .3s; |
|||
-webkit-transition: all .3s; |
|||
-ms-transition: all .3s; |
|||
transition: all .3s; |
|||
} |
|||
button.btn { |
|||
height: 50px; |
|||
margin: 0; |
|||
padding: 0 20px; |
|||
vertical-align: middle; |
|||
background: #4aaf51;
|
|||
border: 0; |
|||
font-family: 'Roboto', sans-serif; |
|||
font-size: 16px; |
|||
font-weight: 300; |
|||
line-height: 50px; |
|||
color: #fff;
|
|||
-moz-border-radius: 4px; |
|||
-webkit-border-radius: 4px; |
|||
border-radius: 4px; |
|||
text-shadow: none; |
|||
-moz-box-shadow: none; |
|||
-webkit-box-shadow: none; |
|||
box-shadow: none; |
|||
-o-transition: all .3s; |
|||
-moz-transition: all .3s; |
|||
-webkit-transition: all .3s; |
|||
-ms-transition: all .3s; |
|||
transition: all .3s; |
|||
} |
|||
button.btn:hover { opacity: 0.6; color: #fff; }
|
|||
</style> |
|||
<div class="container-fluid"> |
|||
<div class="row"> |
|||
<div class="col-sm-6 col-sm-offset-3 form-box"> |
|||
<div class="form-top"> |
|||
<div class="form-top-left"> |
|||
<h3>后台登录</h3> |
|||
<p>请输入您的用户名、密码:</p> |
|||
</div> |
|||
<div class="form-top-right"> |
|||
<i class="glyphicon glyphicon-user"></i> |
|||
</div> |
|||
</div> |
|||
<div class="form-bottom"> |
|||
<form method="post" action="/dologin" class="login-form" role="form"> |
|||
<div class="form-group"> |
|||
<label class="sr-only" for="form-username">Username</label> |
|||
<input type="text" id="username" name="username" placeholder="用户名/邮箱/手机号..." class="form-username form-control"> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label class="sr-only" for="form-password">Password</label> |
|||
<input type="password" id="pwd" name="pwd" placeholder="输入密码..." class="form-password form-control"> |
|||
</div> |
|||
<button type="submit" class="btn">立即登录</button> |
|||
</form> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<script> |
|||
$('.login-form input[type="text"], .login-form input[type="password"], .login-form textarea').on('focus', function() { |
|||
$(this).removeClass('input-error'); |
|||
}); |
|||
|
|||
$('.login-form').on('submit', function(e) { |
|||
$(this).find('input[type="text"], input[type="password"], textarea').each(function(){ |
|||
if( $(this).val() == "" ) { |
|||
e.preventDefault(); |
|||
$(this).addClass('input-error'); |
|||
} |
|||
else { |
|||
$(this).removeClass('input-error'); |
|||
} |
|||
}); |
|||
}); |
|||
</script> |
|||
<script src="/js/bootstrap.min.js"></script></body></html> |
@ -0,0 +1,12 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta name="viewport" content="width=device-width,initial-scale=1.0"> |
|||
<title><?php echo $post["title"]; ?>_<?php echo sysconfig('CMS_WEBNAME'); ?></title><link rel="stylesheet" href="/css/wap.css" media="all"></head><body>
|
|||
|
|||
<header class="mheader-a"><h2 class="bt"><?php echo sysconfig('CMS_WEBNAME'); ?></h2><a href="javascript:;"><div class="phone-icon telphone"></div></a></header>
|
|||
|
|||
@include('wap.common.header') |
|||
<article class="mbanner-b mb10"><a href=""><img src="/images/banner.jpg"></a></article> |
|||
|
|||
<article class="mbox cinfo"><h1 class="tith"><?php echo $post["title"]; ?></h1>
|
|||
<div class="mabout-a"><?php echo $post["body"]; ?></div></article>
|
|||
|
|||
</body></html> |
@ -0,0 +1,16 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta name="viewport" content="width=device-width,initial-scale=1.0"> |
|||
<title><?php echo $post["title"]; ?>_<?php echo sysconfig('CMS_WEBNAME'); ?></title><link rel="stylesheet" href="/css/wap.css" media="all"><script type="text/javascript" src="/js/jquery.min.js"></script></head><body>
|
|||
|
|||
<header class="mheader-a"><h2 class="bt"><?php echo sysconfig('CMS_WEBNAME'); ?></h2><a href="javascript:;"><div class="phone-icon telphone"></div></a></header>
|
|||
|
|||
@include('wap.common.header') |
|||
<article class="mbanner-b mb10"><a href=""><img src="/images/banner.jpg"></a></article> |
|||
|
|||
<article class="mbox cinfo"><h1 class="tith"><?php echo $post["title"]; ?></h1>
|
|||
<div class="mabout-a"><p><strong>价格</strong>:<?php echo $post["price"]; ?></p>
|
|||
<p><strong>原价</strong>:<del><?php echo $post["origin_price"]; ?></del></p>
|
|||
<p><strong>销量</strong>:<?php echo $post["sales"]; ?></p>
|
|||
<?php echo $post["body"]; ?>
|
|||
<br>下一篇:<?php if($pre){ ?><a href="<?php echo get_front_url(array("id"=>$pre['id'],"type"=>'productdetail')); ?>"><?php echo $pre["title"]; ?></a><?php }else{echo '没有了';} ?></div></article>
|
|||
|
|||
</body></html> |
@ -0,0 +1,17 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta name="viewport" content="width=device-width,initial-scale=1.0"> |
|||
<title><?php echo $post["seotitle"];if(!empty($_GET["page"])){echo ' '.$_GET["page"];} ?></title>
|
|||
<meta name="keywords" content="<?php echo $post["keywords"]; ?>"><meta name="description" content="<?php echo $post["description"]; ?>"> |
|||
<link rel="stylesheet" href="/css/wap.css" media="all"></head><body> |
|||
|
|||
<header class="mheader-a"><h2 class="bt"><?php echo sysconfig('CMS_WEBNAME'); ?></h2><a href="javascript:;"><div class="phone-icon telphone"></div></a></header>
|
|||
|
|||
@include('wap.common.header') |
|||
<article class="mbanner-b mb10"><a href=""><img src="/images/banner.jpg"></a></article> |
|||
|
|||
<article class="mbox"> |
|||
<h3 class="tit"><i class="tit_icon"></i><?php echo $post["name"]; ?></h3>
|
|||
<ul class="mnewpic2"><?php if($posts){foreach($posts as $row){ ?>
|
|||
<li><a href="<?php echo get_wap_front_url(array("id"=>$row['id'],"type"=>'productdetail')); ?>"><img src="<?php echo sysconfig('CMS_BASEHOST'); echo $row['litpic']; ?>" alt="<?php echo $row['title']; ?>"></a></li><?php }} ?>
|
|||
</ul><div class="pnav clear"><?php echo $pagenav; ?></div></article>
|
|||
|
|||
</body></html> |
@ -0,0 +1,26 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
<title>搜索结果_<?php echo sysconfig('CMS_WEBNAME'); ?></title>
|
|||
<link rel="stylesheet" href="/css/bootstrap.min.css"><link rel="stylesheet" href="/css/style.css"><script src="/js/jquery.min.js"></script><script src="/js/bootstrap.min.js"></script></head><body> |
|||
|
|||
@include('home.common.header') |
|||
<div class="container"> |
|||
<div class="row row-offcanvas row-offcanvas-right"> |
|||
<div class="col-xs-12 col-sm-9"> |
|||
<div class="bread"><a href="/"><?php echo sysconfig('CMS_INDEXNAME'); ?></a> > <?php echo '搜索结果'; ?></div>
|
|||
<h1 class="page-header">搜索结果</h1> |
|||
|
|||
<?php if(!empty($posts)){foreach($posts as $row){ ?><div class="list"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?>
|
|||
<strong class="tit"><a href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></strong><p><?php echo mb_strcut($row['description'],0,150,'UTF-8'); ?>..</p>
|
|||
<div class="info"><span class="fl"><?php $taglist=taglist($row['id']);if($taglist){foreach($taglist as $row){ ?><a href="<?php echo get_front_url(array("tagid"=>$row['id'],"type"=>'tags')); ?>"><?php echo $row['tag']; ?></a><?php }} ?><em><?php echo date("m-d H:i",$row['pubdate']); ?></em></span><span class="fr"><em><?php echo $row['click']; ?></em>人阅读</span></div><div class="cl"></div></div><?php }} ?><div id="lad2"><script>ljs2();</script></div>
|
|||
</div><!--/.col-xs-12.col-sm-9--> |
|||
|
|||
<div class="col-xs-12 col-sm-3 sidebar-offcanvas" id="sidebar"><div class="panel panel-info"> |
|||
<div class="panel-heading">热门推荐</div> |
|||
<div class="list-group"><?php $posts=arclist(array("row"=>5,"orderby"=>'rand()'));if($posts){foreach($posts as $row){ ?>
|
|||
<a class="list-group-item" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><?php }} ?>
|
|||
</div> |
|||
</div></div><!--/.sidebar-offcanvas--></div><!--/row--> |
|||
|
|||
</div><!-- /.container --> |
|||
@include('home.common.footer')</body></html> |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="utf-8"?>
|
|||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> |
|||
<url><loc><?php echo env('APP_SUBDOMAIN'); ?>/</loc><changefreq>daily</changefreq><priority>1.0</priority></url>
|
|||
<?php $posts=arclist(array("row"=>300));foreach($posts as $row){ ?><url><loc><?php echo env('APP_SUBDOMAIN'); ?><?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?></loc><lastmod><?php echo date("Y-m-d",$row['pubdate']); ?></lastmod><changefreq>monthly</changefreq></url><?php } ?>
|
|||
<?php $posts=arclist(array("row"=>100,"orderby"=>'rand()'));foreach($posts as $row){ ?><url><loc><?php echo env('APP_SUBDOMAIN'); ?><?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?></loc><lastmod><?php echo date("Y-m-d",$row['pubdate']); ?></lastmod><changefreq>monthly</changefreq></url><?php } ?>
|
|||
|
|||
<?php $posts=dataList("arctype");foreach($posts as $row){ ?><url><loc><?php echo env('APP_SUBDOMAIN'); ?><?php echo get_front_url(array("catid"=>$row['id'],"type"=>'list')); ?></loc></url><?php } ?>
|
|||
</urlset> |
@ -0,0 +1,16 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta name="viewport" content="width=device-width,initial-scale=1.0"> |
|||
<title><?php if(empty($post["title"])){echo $post["tag"];}else{echo $post["title"];} ?></title>
|
|||
<meta name="keywords" content="<?php echo $post["keywords"]; ?>"><meta name="description" content="<?php echo $post["description"]; ?>"> |
|||
<link rel="stylesheet" href="/css/wap.css" media="all"></head><body> |
|||
|
|||
<header class="mheader-a"><h2 class="bt"><?php echo sysconfig('CMS_WEBNAME'); ?></h2><a href="javascript:;"><div class="phone-icon telphone"></div></a></header>
|
|||
|
|||
@include('wap.common.header') |
|||
<article class="mbanner-b mb10"><a href=""><img src="/images/banner.jpg"></a></article> |
|||
|
|||
<article class="mbox"> |
|||
<h3 class="tit"><i class="tit_icon"></i><?php echo $post["tag"]; ?></h3>
|
|||
<ul class="mnews-b"><?php foreach($posts as $row){ ?><li><span class="group">[<?php echo date("Y-m-d",$row["pubdate"]); ?>]</span><a href="<?php echo get_front_url(array("id"=>$row['id'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php } ?></ul>
|
|||
<div class="pnav clear"><?php echo $pagenav; ?></div></article>
|
|||
|
|||
</body></html> |
@ -0,0 +1,58 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url=http://m.bnbni.com<?php echo GetCurUrl(); ?>"> |
|||
<title><?php if(empty($post["title"])){echo $post["tag"];}else{echo $post["title"];}if($page!=0){echo ' '.($page+1);} ?></title><meta name="keywords" content="<?php echo $post["keywords"]; ?>" /><meta name="description" content="<?php echo $post["description"]; ?>" /><link rel="stylesheet" href="<?php echo CMS_BASEHOST; ?>/images/style.css" media="all"><script type="text/javascript" src="<?php echo CMS_BASEHOST; ?>/js/jquery.min.js"></script><script type="text/javascript" src="<?php echo CMS_BASEHOST; ?>/js/ad.js"></script><script>uaredirect("http://m.bnbni.com/cat{dede:type}[field:ID /]{/dede:type}");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
|
|||
<div class="box mt10"><div class="fl_640"><div class="zinfo"><h1><?php echo $post["tag"]; ?></h1><?php if(!empty($post['content'])){echo '<div class="zdes">'.$post['content'].'</div>';} ?></div><div id="lad1"><script>ljs1();</script></div>
|
|||
|
|||
<?php if(!empty($posts)){foreach($posts as $row){ ?><h2 class="tagarct"><?php echo $row["title"]; ?></h2><div class="content"><?php echo $row["body"]; ?></div><?php }} ?><div id="lad2"><script>ljs2();</script></div></div><!-- fl_640 end -->
|
|||
|
|||
<div class="fr_300"><div id="rad1"><script>rjs1();</script></div> |
|||
<div class="side"><div class="stit"><h2>相关推荐</h2><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['id']; ?>,tuijian:1,mode:1,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<ul class="uli chs" id="xglist"><?php $posts=arclist(array("row"=>5,"tuijian"=>1));foreach($posts as $row){ ?><li><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php } ?></ul><div class="cl"></div></div>
|
|||
|
|||
<div id="rad3"><script>rjs3();</script></div> |
|||
<div class="side"><div class="stit"><h2>猜你喜欢</h2><a href="javascript:getmore({PageSize:5,_token:'{{ csrf_token() }}',typeid:<?php echo $post['id']; ?>,mode:2,orderby:'rand()'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<div class="uli2" id="xglike"><?php $posts=arclist(array("row"=>5,"orderby"=>'rand()'));foreach($posts as $row){ ?><div class="suli"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><div class="sulii"><?php if(!empty($row['writer'])){echo '<span class="time">'.$row['writer'].'</span>';}elseif(!empty($row['source'])){echo '<span class="time">'.$row['source'].'</span>';} ?> 阅读(<?php echo $row['click']; ?>)</div><div class="cl"></div></div><?php } ?><div class="cl"></div></div></div>
|
|||
|
|||
<div id="rad2"><script>rjs2();</script></div></div><!-- fr_300 end --></div><!-- box end --> |
|||
<script> |
|||
function getmore(condition) |
|||
{ |
|||
var url = "<?php echo CMS_BASEHOST; ?>/api/listarc"; |
|||
//var typeid = "";
|
|||
$.post(url,condition,function(res){ |
|||
if(res.code==0) |
|||
{ |
|||
var json = res.data; //数组
|
|||
var str = ''; |
|||
$.each(json, function (index) { |
|||
//循环获取数据
|
|||
//var title = json[index].title;
|
|||
if(condition.mode==1) |
|||
{ |
|||
str = str + '<li><a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a></li>'; |
|||
} |
|||
else if(condition.mode==2) |
|||
{ |
|||
var litpic = '';if(json[index].litpic!==''){litpic = '<a class="limg" href="'+json[index].url+'"><img alt="'+json[index].title+'" src="'+json[index].litpic+'"></a>';} |
|||
str = str + '<div class="suli">'+litpic+'<a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a><div class="sulii">阅读('+json[index].click+')</div><div class="cl"></div></div>'; |
|||
} |
|||
}); |
|||
|
|||
if(str!='' && str!=null && condition.mode==1) |
|||
{ |
|||
$('#xglist').html(str); |
|||
} |
|||
else if(str!='' && str!=null && condition.mode==2) |
|||
{ |
|||
$('#xglike').html(str); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
|
|||
} |
|||
},'json'); |
|||
} |
|||
</script> |
|||
@include('home.common.footer')</body></html> |
@ -0,0 +1,57 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-siteapp" /><meta http-equiv="Cache-Control" content="no-transform" /><meta name="mobile-agent" content="format=xhtml;url=http://m.bnbni.com<?php echo GetCurUrl(); ?>"> |
|||
<title><?php if(empty($post["title"])){echo $post["tag"];}else{echo $post["title"];}if($page!=0){echo ' '.($page+1);} ?></title><meta name="keywords" content="<?php echo $post["keywords"]; ?>" /><meta name="description" content="<?php echo $post["description"]; ?>" /><link rel="stylesheet" href="<?php echo CMS_BASEHOST; ?>/images/style.css" media="all"><script type="text/javascript" src="<?php echo CMS_BASEHOST; ?>/js/jquery.min.js"></script><script type="text/javascript" src="<?php echo CMS_BASEHOST; ?>/js/ad.js"></script><script>uaredirect("http://m.bnbni.com/cat{dede:type}[field:ID /]{/dede:type}");</script></head><body><script>site();</script>
|
|||
@include('home.common.header')<div id="tad"><script>tjs();</script></div> |
|||
|
|||
<div class="box mt10"><div class="fl_640"><h1 class="arct"><?php echo $post["tag"]; ?></h1>
|
|||
<div class="content"><?php echo $post["content"]; ?></div><div id="lad1"><script>ljs1();</script></div></div><!-- fl_640 end -->
|
|||
|
|||
<div class="fr_300"><div id="rad1"><script>rjs1();</script></div> |
|||
<div class="side"><div class="stit"><h2>相关推荐</h2><a href="javascript:getmore({PageSize:5,tuijian:1,mode:1,orderby:'rand()',_token:'{{ csrf_token() }}'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<ul class="uli chs" id="xglist"><?php $posts=arclist(array("row"=>5,"tuijian"=>1));foreach($posts as $row){ ?><li><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a></li><?php } ?></ul><div class="cl"></div></div>
|
|||
|
|||
<div id="rad3"><script>rjs3();</script></div> |
|||
<div class="side"><div class="stit"><h2>猜你喜欢</h2><a href="javascript:getmore({PageSize:5,mode:2,orderby:'rand()',_token:'{{ csrf_token() }}'});" class="more">换一换</a><div class="cl"></div></div> |
|||
<div class="uli2" id="xglike"><?php $posts=arclist(array("row"=>5,"orderby"=>'rand()'));foreach($posts as $row){ ?><div class="suli"><?php if(!empty($row['litpic'])){ ?><a class="limg" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><img alt="<?php echo $row['title']; ?>" src="<?php echo $row['litpic']; ?>"></a><?php } ?><a target="_blank" href="<?php echo get_front_url(array("id"=>$row['id'],"catid"=>$row['typeid'],"type"=>'content')); ?>"><?php echo $row['title']; ?></a><div class="sulii"><?php if(!empty($row['writer'])){echo '<span class="time">'.$row['writer'].'</span>';}elseif(!empty($row['source'])){echo '<span class="time">'.$row['source'].'</span>';} ?> 阅读(<?php echo $row['click']; ?>)</div><div class="cl"></div></div><?php } ?><div class="cl"></div></div></div>
|
|||
|
|||
<div id="rad2"><script>rjs2();</script></div></div><!-- fr_300 end --></div><!-- box end --> |
|||
<script> |
|||
function getmore(condition) |
|||
{ |
|||
var url = "<?php echo CMS_BASEHOST; ?>/api/listarc"; |
|||
//var typeid = "";
|
|||
$.post(url,condition,function(res){ |
|||
if(res.code==0) |
|||
{ |
|||
var json = res.data; //数组
|
|||
var str = ''; |
|||
$.each(json, function (index) { |
|||
//循环获取数据
|
|||
//var title = json[index].title;
|
|||
if(condition.mode==1) |
|||
{ |
|||
str = str + '<li><a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a></li>'; |
|||
} |
|||
else if(condition.mode==2) |
|||
{ |
|||
var litpic = '';if(json[index].litpic!==''){litpic = '<a class="limg" href="'+json[index].url+'"><img alt="'+json[index].title+'" src="'+json[index].litpic+'"></a>';} |
|||
str = str + '<div class="suli">'+litpic+'<a target="_blank" href="'+json[index].url+'">'+json[index].title+'</a><div class="sulii">阅读('+json[index].click+')</div><div class="cl"></div></div>'; |
|||
} |
|||
}); |
|||
|
|||
if(str!='' && str!=null && condition.mode==1) |
|||
{ |
|||
$('#xglist').html(str); |
|||
} |
|||
else if(str!='' && str!=null && condition.mode==2) |
|||
{ |
|||
$('#xglike').html(str); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
|
|||
} |
|||
},'json'); |
|||
} |
|||
</script> |
|||
@include('home.common.footer')</body></html> |
@ -0,0 +1,20 @@ |
|||
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /><meta name="viewport" content="width=device-width,initial-scale=1.0"> |
|||
<title>标签云_<?php echo sysconfig('CMS_WEBNAME'); ?></title><link rel="stylesheet" href="/css/wap.css" media="all"></head><body>
|
|||
|
|||
<header class="mheader-a"><h2 class="bt"><?php echo sysconfig('CMS_WEBNAME'); ?></h2><a href="javascript:;"><div class="phone-icon telphone"></div></a></header>
|
|||
|
|||
@include('wap.common.header') |
|||
<article class="mbanner-b mb10"><a href=""><img src="/images/banner.jpg"></a></article> |
|||
|
|||
<article class="mbox cinfo"><h1 class="tith">标签云</h1> |
|||
<div class="mabout-a"> |
|||
<?php $posts=tagslist(); if($posts){foreach($posts as $row) { ?>
|
|||
<a target="_blank" href="<?php echo get_front_url(array("tagid"=>$row['id'],"type"=>'tags')); ?>"><?php echo $row['tag']; ?></a> <?php }} ?>
|
|||
<br><br> |
|||
<h2>随机标签</h2> |
|||
<?php $posts=tagslist(array("row"=>30,"orderby"=>"rand()")); foreach($posts as $row) { ?>
|
|||
<a target="_blank" href="<?php echo get_front_url(array("tagid"=>$row['id'],"type"=>'tags')); ?>"><?php echo $row['tag']; ?></a>
|
|||
<?php } ?>
|
|||
</div></article> |
|||
|
|||
</body></html> |