http://www.sufeinet.com/plugin.php?id=keke_group

苏飞论坛

 找回密码
 马上注册

QQ登录

只需一步,快速开始

分布式系统框架(V2.0) 轻松承载百亿数据,千万流量!讨论专区 - 源码下载 - 官方教程

HttpHelper爬虫框架(V2.7-含.netcore) HttpHelper官方出品,爬虫框架讨论区 - 源码下载 - 在线测试和代码生成

HttpHelper爬虫类(V2.0) 开源的爬虫类,支持多种模式和属性 源码 - 代码生成器 - 讨论区 - 教程- 例子

查看: 27982|回复: 9

[求助] 用新的HTTPHELPER,COOKIE不能带到下个方法中,不知是不是写法问题!

[复制链接]
发表于 2013-7-31 12:38:57 | 显示全部楼层 |阅读模式
  1.                 HttpHelper http = new HttpHelper();
  2.                 HttpItem item = new HttpItem() {
  3.                     URL = "http://bbs.xmfish.com/login.php",//URL     必需项
  4.                     Encoding = null,//编码格式(utf-8,gb2312,gbk)     可选项 默认类会自动识别
  5.                     //Encoding = Encoding.Default,
  6.                     Method = "post",//URL     可选项 默认为Get
  7.                     //Timeout = 100000,//连接超时时间     可选项默认为100000
  8.                     //ReadWriteTimeout = 30000,//写入Post数据超时时间     可选项默认为30000
  9.                     //IsToLower = false,//得到的HTML代码是否转成小写     可选项默认转小写
  10.                     //Cookie = "",//字符串Cookie     可选项
  11.                     UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",//用户的浏览器类型,版本,操作系统     可选项有默认值
  12.                     Accept = "text/html, application/xhtml+xml, */*",//    可选项有默认值
  13.                     ContentType = "application/x-www-form-urlencoded",//返回类型    可选项有默认值
  14.                     //Referer = "http://www.sufeinet.com",//来源URL     可选项
  15.                     Postdata = "answer=&cktime=0&customquest=&forward=&hideid=0&jumpurl=&lgt=0&pwpwd=" + passWord + "&pwuser=" + userId + "&question=0&step=2&submit=",
  16.                     Allowautoredirect=true

  17.                
  18.                 };
  19.                 HttpResult result = http.GetHtml(item);

  20.                 if (result.Html.IndexOf("您已经顺利登录") > 0)
  21.                     {
  22.                         item = new HttpItem()
  23.                         {
  24.                             URL = "http://bbs.xmfish.com/u.php",
  25.                             CookieCollection=result.CookieCollection,     //result.CookieCollection里面的count=0
  26.                             Cookie=result.Cookie
  27.                         };
  28.                         result = http.GetHtml(item);//目前这个里面是未登入的状态
  29.     }
复制代码
这个我用另一个HTTPREQUEST是可以成功带到下个请求的。。但是这边却不行。我在想是我的写法有哪不对。。请各位帮帮忙。

本帖被以下淘专辑推荐:



1. 开通SVIP会员,免费下载本站所有源码,不限次数据,不限时间
2. 加官方QQ群,加官方微信群获取更多资源和帮助
3. 找站长苏飞做网站、商城、CRM、小程序、App、爬虫相关、项目外包等点这里
发表于 2013-7-31 12:48:58 | 显示全部楼层
CookieCollection=result.CookieCollection,     //result.CookieCollection里面的count=0 这个是不用加的,删除了试试,有些是需要处理Cookie的, 你看教里有处理Cookie的类
 楼主| 发表于 2013-7-31 13:11:18 | 显示全部楼层
站长苏飞 发表于 2013-7-31 12:48
CookieCollection=result.CookieCollection,     //result.CookieCollection里面的count=0 这个是不用加的 ...

我之前也没有加的。也是不行的。
我有看过教程里面的。但是这个COOKIE是不要特殊处理的。。我很早前用一个HTTPREQUEST写过那个现在都还可以用。。就是用了这个就不行了。
我有跟踪走了下。COOKIE也并没有添加到一个CookieContainer之类的。。CookieCollection里面都是空的。所以并不会加到CookieContainer里面。
  1.             if (objhttpItem.CookieCollection != null)
  2.             {
  3.                 request.CookieContainer = new CookieContainer();
  4.                 request.CookieContainer.Add(objhttpItem.CookieCollection);
  5.             }
复制代码
苏大大一定要看一下啊。。。


发表于 2013-7-31 13:31:19 | 显示全部楼层
CookieCollection这个为空就是不需要,直接使用字符串的cookie就行了,有的时候才需要。这个不用管他的,肯定不是因为这个原因。你提供一下测试账户或者密码吧,要不然没办法帮你测试。
发表于 2013-7-31 15:03:13 | 显示全部楼层
我一直都在和你说是Cookie问题处理一下就行了,哎,你怎么就是不听呢?
我写的是CookieHelper类就是专业处理这些问题的,在每个教程里面都有写链接也有例子和教程。
你看一下就行了,你这个可以这样处理
[code=csharp] HttpHelper http = new HttpHelper();
            HttpItem item = new HttpItem()
            {
                URL = "http://bbs.xmfish.com/login.php",//URL     必需项
                Encoding = null,//编码格式(utf-8,gb2312,gbk)     可选项 默认类会自动识别
                //Encoding = Encoding.Default,
                Method = "post",//URL     可选项 默认为Get
                //Timeout = 100000,//连接超时时间     可选项默认为100000
                //ReadWriteTimeout = 30000,//写入Post数据超时时间     可选项默认为30000
                //IsToLower = false,//得到的HTML代码是否转成小写     可选项默认转小写
                //Cookie = "",//字符串Cookie     可选项
                UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",//用户的浏览器类型,版本,操作系统     可选项有默认值
                Accept = "text/html, application/xhtml+xml, */*",//    可选项有默认值
                ContentType = "application/x-www-form-urlencoded",//返回类型    可选项有默认值
                //Referer = "http://www.sufeinet.com",//来源URL     可选项
                Postdata = "answer=&cktime=0&customquest=&forward=&hideid=0&jumpurl=&lgt=0&pwpwd=密码&pwuser=用户名&question=0&step=2&submit=",
                Allowautoredirect = true
            };
            HttpResult result = http.GetHtml(item);
            string cookie = string.Empty;
            foreach (CookieItem s in HttpCookieHelper.GetCookieList(result.Cookie))
            {
                if (s.Key.Contains("24a79_"))
                {
                    cookie += HttpCookieHelper.CookieFormat(s.Key, s.Value);
                }
            }
            if (result.Html.IndexOf("您已经顺利登录") > 0)
            {
                item = new HttpItem()
                {
                    URL = "http://bbs.xmfish.com/u.php",
                    Cookie = cookie
                };
                result = http.GetHtml(item);//目前这个里面是未登入的状态
            }[/code]
你再看看成功不成功
 楼主| 发表于 2013-7-31 16:03:36 | 显示全部楼层
站长苏飞 发表于 2013-7-31 15:03
我一直都在和你说是Cookie问题处理一下就行了,哎,你怎么就是不听呢?
我写的是CookieHelper类就是专业处 ...

苏大还是不行,,我有个建议。看后面的版本能不能弄个全局CookieContainer,这样每次请求COOKIE自动加入到request.CookieContainer中也不需要像刚才你说的COOKIE还要去处理。他直接就会处理好的。HTTPHELPER就会更强大了。
发表于 2013-7-31 16:13:24 | 显示全部楼层
不行,这个不能加,加了就不是原生的了,只能加辅助类,
这样HtttpHelepr会变的臃肿,
不可能吧,我亲自测试可以的呀,正常访问
你不要告诉我你连这个都没有修改直接运行的
jumpurl=&lgt=0&pwpwd=密码&pwuser=用户名&
我感觉不可能,我这边刚执行过上面代码一切正常
发表于 2013-7-31 16:15:23 | 显示全部楼层
以下是登录之后返回的结果,应该是正常的吧。
<!doctype html>
<html xmlns:wb="http://open.weibo.com/wb">
<head>
<meta charset="gbk" />
<title>厦门小鱼社区_厦门小鱼网_厦门鱼坛_厦门鱼塘_厦门最热论坛</title>
<meta name="generator" content="厦门小鱼网" />
<meta name="description" content="厦门小鱼网是厦门最大的城市生活门户,前身是厦门小鱼社区,覆盖厦门85%的网民,厦门小鱼网以提倡网友们互帮互助为社区发展宗旨,厦门小鱼社区“关爱、分享、互助、交流”的网络精神影响着厦门年轻一代的网民." />
<meta name="keywords" content="厦门小鱼社区,厦门小鱼网,厦门,小鱼网,厦门小鱼" />
<meta property="qc:admins" content="274121572260561306375" />
<link href="/template/xmfish/images/headernav201205/headernav_2.css" rel="stylesheet" type="text/css" />
<!--[if IE 9 ]>
<meta name="msapplication-task" content="name=网站首页; action-uri=http://bbs.xmfish.com; icon-uri=http://bbs.xmfish.com/favicon.ico" />
<meta name="msapplication-task" content="name=个人中心; action-uri=http://bbs.xmfish.com/u.php; icon-uri=http://bbs.xmfish.com/images/ico/home.ico" />
<meta name="msapplication-task" content="name=我的帖子; action-uri=http://bbs.xmfish.com/apps.php?q=article; icon-uri=http://bbs.xmfish.com/images/ico/post.ico" />
<meta name="msapplication-task" content="name=消息中心; action-uri=http://bbs.xmfish.com/message.php; icon-uri=http://bbs.xmfish.com/images/ico/mail.ico" />
<meta name="msapplication-task" content="name=我的设置; action-uri=http://bbs.xmfish.com/profile.php; icon-uri=http://bbs.xmfish.com/images/ico/edit.ico" />
<![endif]-->
<link rel='archives' title='厦门小鱼社区_厦门小鱼网' href='http://bbs.xmfish.com/simple/' />
<base id="headbase" href="http://bbs.xmfish.com/" />
<!--link rel="stylesheet" type="text/css" href="data/style/xmfish.css" /-->
<link rel="stylesheet" href="images/pw_core.css?101128" />
<link rel="stylesheet" type="text/css" href="data/bbscache/wind_wind.css" />
<script type="text/javascript" src="/apps/rt/www/js/jquery-1.4.2.min.js?t=1.0"></script>
<script type="text/javascript" src="/template/xmfish/images/headernav/xmfishsrch.js" charset="utf-8"></script>
<SCRIPT type="text/javascript" language="JavaScript" src="js/core/core.js"></SCRIPT>
<script type="text/javascript" language="JavaScript" src="js/pw_ajax.js"></script>
<script language="JavaScript">var imgpath = 'images';var verifyhash = 'd6108a9c';var modeimg = '';var modeBase = '';var winduid = '398002';var windid    = '隔世情缘';var groupid    = '7';var basename = '';var temp_basename = '';var db_shiftstyle = '1';
function shiftStyle(){
if(db_shiftstyle == 1){
if (getObj('widthCfg').innerHTML=='[切换到宽版]') {
if(!getObj('fullscreenStyle')) {
var l = document.createElement('link');
l.id="fullscreenStyle";
l.rel="stylesheet";
l.type="text/css";
l.href="images/fullscreen.css";
l.media="all";
document.body.appendChild(l);
}else {
getObj('fullscreenStyle').disabled = false;
}
getObj('widthCfg').innerHTML='[切换到窄版]';
var widthCfg = 1;
} else {
var widthCfg = 0;
getObj('fullscreenStyle').disabled=true;
getObj('widthCfg').innerHTML='[切换到宽版]';
}
SetCookie('widthCfg',widthCfg);
if(goTop){
goTop.setStyle();
}
}
};
</script>
<script type="text/javascript">
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-17408502-1']);
  _gaq.push(['_setDomainName', '.xmfish.com']);
  _gaq.push(['_trackPageview']);
  (function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
</script>
</head>
<body class="xmfish-skin" style="padding-top: 0;">
<style>
.clear:before,.clear:after{content:"";display:table;}
.clear:after{clear:both;}
.clear{zoom:1;}
.ulib-r3 {moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;border-top-left-radius:3px 3px;border-top-right-radius:3px 3px;border-bottom-right-radius:3px 3px;border-bottom-left-radius:3px 3px;}
.ulib-r5 {moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;border-top-left-radius:5px 5px;border-top-right-radius:5px 5px;border-bottom-right-radius:5px 5px;border-bottom-left-radius:5px 5px;}
.verification_bg {position:fixed;_position:absolute;display:block;width:100%;height:5000px;background-color:rgb(119, 119, 119);filter:alpha(opacity=70);-moz-opacity:0.7;opacity:0.7;z-index:1;}
.verification_panel {position:absolute;width:100%;padding-top:200px;z-index:10;}
.verification_shadow{width:480px;margin:0 auto;padding:4px;background:url('images/xmfish/index/shadow_bg.png') repeat;_background:#999;}
.verification {height:270px;background:#fff url('images/xmfish/index/verification_bg.jpg') no-repeat 0 0;}
.verification h4.verification_tt {padding:58px 0 0 185px;font-weight:bold;font-size:14px;color:#ff7f00;}
.verification .verification_tx {padding:45px 0 0 60px;}
.verification .verification_opt {padding-top:40px;text-align:center;}
.verification .verification_opt a.verification_link {color:#0094e4;text-decoration:none;}
.verification .verification_opt a.verification_btn {display:inline-block;margin-left:20px;padding:0 12px;line-height:27px;font-weight:bold;color:#fff;border:#0a7bcc 1px solid;background-color:#0091e0;background-image:-webkit-linear-gradient(top,#00a9fe,#0082cd);background-image:-moz-linear-gradient(top,#00a9fe,#0082cd);background-image:-ms-linear-gradient(top,#00a9fe,#0082cd);background-image:-o-linear-gradient(top,#00a9fe,#0082cd);background-image:linear-gradient(top,#00a9fe,#0082cd);text-decoration:none;}
.verification .verification_opt a.verification_btn:hover {text-decoration:none;background-color:#00a5f8;background-image:-webkit-linear-gradient(top,#27b5fd,#0da0ef);background-image:-moz-linear-gradient(top,#27b5fd,#0da0ef);background-image:-ms-linear-gradient(top,#27b5fd,#0da0ef);background-image:-o-linear-gradient(top,#27b5fd,#0da0ef);background-image:linear-gradient(top,#27b5fd,#0da0ef);}
</style>
<script>
function verification_position()
{
var disp=false;
var strCookie=document.cookie;
var arrCookie=strCookie.split("; ");
for(var i=0;i<arrCookie.length;i++){
var arr=arrCookie[i].split("=");
if(arr[0]=='userYan'){
disp=true;   
}
}
if(!disp){
document.getElementById('ceng1').style.display = 'block';
document.getElementById('ceng2').style.display = 'block';
}
}
function close_yan()
{
document.getElementById('ceng1').style.display = 'none';
document.getElementById('ceng2').style.display = 'none';
document.cookie="userYan=7";
}
</script>
<div id="ceng1" style="display:none" class="verification_bg"></div>
<div id="ceng2" style="display:none" class="verification_panel">
<div class="verification_shadow ulib-r5">
<div class="verification ulib-r5">
<h4 class="verification_tt">您的账号还未通过验证</h4>
<p class="verification_tx">未验证会员不能参与发帖交流,也不能使用站内短消息。<br />
通过验证转正成小鱼的正式会员,才能参与论坛的正常发帖交流等行为。</p>
<div class="verification_opt"><a class="verification_link" href="javascript:">以后再说</a><a class="verification_btn ulib-r3" href="srv.php?action=smsauth" target="_blank">立即验证</a></div>
</div>
</div>
</div>

<link rel="stylesheet" href="/apps/rt/www/header.css" />
<div class="header1" id="header">
<div class="wrap">
<ul class="fl">
<li class="city sd-wrap"><a class="nav-link" href="http://www.xmfish.com">厦门小鱼<i></i></a>
<div class="sd-panel">
<ol>
<li><a class="food" href="http://food.xmfish.com/" target="_blank" >美食</a></li>
<li><a class="home" href="http://home.xmfish.com/" target="_blank" >家居</a></li>
<li><a class="marry" href="http://marry.xmfish.com/" target="_blank" >婚庆</a></li>
<li><a class="house" href="http://house.xmfish.com/" target="_blank" >房产</a></li>
<li><a class="car" href="http://auto.xmfish.com/" target="_blank" >汽车</a></li>
<li><a class="baby" href="http://bbs.xmfish.com/thread-htm-fid-75.html" target="_blank" >亲子</a></li>
</ol>
</div><!--/end .sd-panel-->
</li>
<li><a class="nav-link" href="http://bbs.xmfish.com/" rel="external nofollow">社区</a></li>
<li><a class="nav-link" href="http://info.xmfish.com/" rel="external nofollow">分类</a></li>
<li><a class="nav-link" href="http://tg.xmfish.com" rel="external nofollow">优惠</a></li>
<li><a class="nav-link" href="http://hot.xmfish.com/special/client/" rel="external nofollow">手机</a></li>     
</ul>
<div class="search ulib-r3" id="search-down">
<form method="get" action="http://bbs.xmfish.com/searcher.php" name="top_search" id="top_search"><input type="hidden" name="type" value="thread"><input class="search-txt fl slight" type="text" value="搜帖子、用户或商家..." id="search" name="keyword" /><a class="search-btn fr" href="javascript:jQuery('#top_search').submit();" rel="external nofollow">搜索</a></form>
<div class="sd-panel" style="display:none;"></div>
</div>
<ul class="fr">
<li><a href="/srv.php?action=smsauth" class="nav-link" target="_blank" rel="external nofollow">验证转正</a></li>
  
  <li><a href="/u.php?a=friend&type=inviteCode" class="nav-link" target="_blank" rel="external nofollow">邀请码</a></li>
  <li class="sd-wrap"><a class="nav-link" href="/message.php" rel="external nofollow">消息<i></i></a>
   <div class="sd-panel">
<ol>   
<li><a href="/u.php?a=friend&type=attentioned" target="_blank" rel="external nofollow">查看粉丝</a></li>
<li><a href="/message.php?type=sms" target="_blank" rel="external nofollow">查看私信</a></li>
<li><a href="/apps.php?q=weibo&do=refer" target="_blank" rel="external nofollow">查看@我</a></li>
<li><a href="/message.php?type=notice" target="_blank" rel="external nofollow">查看通知</a></li>
</ol>
</div><!--/end .sd-panel-->   
  </li><!--/end .sd-wrap-->
  <li class="sd-wrap">
  <a class="nav-link nav-link-account" href="/u.php">隔世情缘<i></i></a>
  <div class="sd-panel">
<ol>
<li><a href="u.php" rel="external nofollow">个人中心</a></li>
<li><a href="/u.php?uid=398002" rel="external nofollow">我的主页</a></li>
<li><a href="http://u.xmfish.com/group?act=my" rel="external nofollow">我的圈子</a></li>
<li><a href='/apps.php?q=article' rel='external nofollow'>我的帖子</a></li>
<li><a href='/apps.php?q=collection' rel='external nofollow'>我的收藏</a></li>
<li><a href='/jobcenter.php' rel='external nofollow'>我的任务</a></li>
<li><a href="/profile.php?action=modify" rel="external nofollow">帐号设置</a></li>
<li><a href="/u.php?a=friend&type=my" rel="external nofollow">好友管理</a></li>
<li><a href="/login.php?action=quit" rel="external nofollow">退出</a></li>
</ol>
  </div>
  </li><!--/end .sd-wrap-->
   </ul>
   
<div id="notice-buddle-tip" class="ulib-r5 ulib-sg">
<a class="btn-close"  id="notice-buddle-close" href="javascript:" rel="external nofollow">知道了</a>
<p class="hidden"><a href="/message.php?type=notice&action=unread" target="_blank" id="seeNotice_nt" rel="external nofollow">你有<strong class="serious" id="tipsNum_nt">0</strong>个系统通知</a></p>
<p class="hidden"><a href="http://u.xmfish.com/goto?act=atme&uid=398002" id="seeNotice_at">你有<strong class="serious" id="tipsNum_at">0</strong>个@我的</a></p>
<p class="hidden"><a href="/message.php?type=sms&action=unread" id="seeNotice_pm">你有<strong class="serious" id="tipsNum_pm">0</strong>条私信</a></p>
<p class="hidden"><a href="http://u.xmfish.com/comments" id="seeNotice_cm">你有<strong class="serious" id="tipsNum_cm">0</strong>个评论</a></p>
<p class="hidden"><a href="http://u.xmfish.com/goto?act=fans&uid=398002" id="seeNotice_fs">你有<strong class="serious" id="tipsNum_fs">0</strong>个新增粉丝</a></p>
</div>
<script>   
jQuery(document).ready(function(){   
var elementjs = document.createElement("script");
elementjs.src = '/jq_ajax.php?action=showNotice&uid=398002';
elementjs.type = 'text/javascript';
elementjs.charset = 'GBK';
var html_doc = document.getElementsByTagName('head')[0];
html_doc.appendChild(elementjs);
jQuery('#notice-buddle-close').click(function () {
jQuery('#notice-buddle-tip').hide();
});
})
</script>
</div>
</div>
<script>  
jQuery(document).ready(function(){
jQuery('#header .sd-wrap').hover(function(){
jQuery(this).addClass('active');
},function(){
jQuery(this).removeClass('active');
});  
jQuery('.switch_city .sct,.switch_city .city_list').hover(
function(){
jQuery('.switch_city .city_list').show();
},function(){
jQuery('.switch_city .city_list').hide();
});
});
function changeSearch(keyword){
if(keyword != ''){
keyword = keyword.substring(0,8);
var str = '<ol><li><a href="/searcher.php?keyword='+keyword+'&type=thread">搜"<span class="serious">'+keyword+'</span>"相关的帖子</a></li><li><a href="/searcher.php?keyword='+keyword+'&type=user">搜"<span class="serious">'+keyword+'</span>"相关的人</a></li><li><a href="/searcher.php?keyword='+keyword+'&type=biz">搜"<span class="serious">'+keyword+'</span>"相关的商家</a></li></ol>';
jQuery('#search-down .sd-panel').html(str);
jQuery('#search-down .sd-panel').show();
}else{
jQuery('#search-down .sd-panel').hide();
}
}
</script>


<script type="text/javascript" src="http://www.xmfish.com/js/chanel/www/jquery.lwtCountdown-0.9.5.js"></script>
<script language="javascript" type="text/javascript">
jQuery(document).ready(function(){jQuery('#countdown_dashboard').countDown({
endDate:"1375351200",
nowDate:"1375287774"
});});
</script>
<style type="text/css">
#fish-top-skin{width:100%;height:360px;background:url('http://www.xmfish.com/images/chanel/www/1208/fish-top-skin-bobing.jpg') no-repeat top center;}
.bobing-theme{position:absolute;display:block;top:45px;left:50%;width:483px;height:123px;margin-left:60px;background:url('http://www.xmfish.com/images/chanel/www/1208/bobing-theme.png') no-repeat 0 0;_background:none;_filter:progidXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=crop,src='http://www.xmfish.com/images/chanel/www/1208/bobing-theme.png');cursor:pointer;z-index:1;}
.fixed_top{z-index:1 !important;}
.t_12_5_subject{top:-18px;}
.t_12_5_tab-holder ul li{display:table;margin-right:-5px\9 !important;padding-right:0 !important;}
.t_12_5_tab-holder ul li a{margin-right:0 !important;}
.countdown {position:absolute;width:280px;height:65px;top:60px;left:50%;margin-left:-210px;font-family:"Microsoft Yahei","微软雅黑",Tahoma,Arial,Helvetica,STHeiti;overflow:hidden;}
.countdown .countdown-tt{height:35px;}
.countdown .countdown-tt i.countdown-tt-line{float:left;display:block;width:70px;height:11px;border-bottom:#ff895a 1px solid;}
.countdown .countdown-tt span.countdown-tt-tx{float:left;display:inline-block;padding:0 7px;font-weight:bold;font-size:16px;color:#a50000;}
.countdown .dash{_display:inline;width:61px;}
.countdown .time{float:left;width:40px;height:30px;overflow:hidden;zoom:1;}
.countdown .dash,
.countdown .time .digit{float:left;}
.countdown .time .digit{width:20px;background:url('http://www.xmfish.com/images/chanel/www/1208/digit-bg.png') no-repeat center top;text-align:center;color:#8e1700;font-size:16px;font-weight:bold;line-height:22px;}
.countdown .time .digit .top,
.countdown .time .digit .bottom{width:20px;text-align:center;color:#8e1700;font-size:16px;font-weight:bold;line-height:22px;}
.countdown span.unit{float:left;display:block;padding:3px 0 0 3px;font-weight:bold;font-size:14px;color:#fa4a26;}
</style>
<div id="fish-top-skin"></div>
<a class="bobing-theme" href="http://bbs.xmfish.com/read-htm-tid-8662536.html" target="_blank" title="小鱼博饼嘉年华"></a>
<div class="countdown">
<h4 class="countdown-tt">
<i class="countdown-tt-line"></i>
<span class="countdown-tt-tx">博饼倒计时</span>
<i class="countdown-tt-line"></i>
</h4>
<div id="countdown_dashboard" class="countdown-dashboard">
<div class="dash days_dash">
<div class="time">
<div class="digit"></div>
<div class="digit"></div>
</div>
<span class="unit">天</span>
</div>
<div class="dash hours_dash">
<div class="time">
<div class="digit"></div>
<div class="digit"></div>
</div>
<span class="unit">时</span>
</div>
<div class="dash minutes_dash">
<div class="time">
<div class="digit"></div>
<div class="digit"></div>
</div>
<span class="unit">分</span>
</div>
<div class="dash seconds_dash">
<div class="time">
<div class="digit"></div>
<div class="digit"></div>
</div>
<span class="unit">秒</span>
</div>
</div>
</div><!--/end .countdown remove this when bobing ends-->
<div>
<div id="head" style="margin-top:-330px;">
<script>
function hide()
{
document.getElementById('diebian').style.display = 'none';
}
</script>
<div class="wrap">
<div class="t_12_5_subject">
<h2 class="fl"><a href="http://www.xmfish.com">厦门小鱼网</a></h2>
<div class="switch_city">
<strong class="sc">厦门</strong>
<span class="sct">[切换城市]</span>
<div class="city_list">
<a href="http://www.qzbbs.com/">泉州</a>
<a href="http://www.zzfish.cn/">漳州</a>
<a href="http://www.jjj8.cn/">晋江</a>
</div>
</div>
</div>
<div class="t_12_5_tab-holder">
<ul class="clear">
<li><a href="http://www.xmfish.com" rel="external nofollow">首页</a></li>
<li class="active"><a target="_blank" href="http://bbs.xmfish.com">社区</a></li>
<li><a target="_blank" href="http://bbs.xmfish.com/u.php" rel="external nofollow">我的空间</a></li>
<li><a target="_blank" href="http://card.xmfish.com">小鱼卡</a></li>
<li><a target="_blank" href="http://hot.xmfish.com/special/client/">手机客户端</a></li>
<li><a href="http://hot.xmfish.com/hopeschool/" target="_blank">公益</a></li>
<li style="position:relative;"><a href="http://bbs.xmfish.com/read-htm-tid-8628903.html" style="font-weight:bold;color:#f00;" target="_blank">结婚采购会<i style="position:absolute;top:4px;left:85px;"><img src="http://www.xmfish.com/images/chanel/www/1208/star-icon.gif"></i></a></li>
</ul>
</div>
<div class="t_12_5_nav-holder clear" style="position: relative;z-index:1;">
<dl class="t_12_5_n_life">
<dt><a href="javascript:">生活</a></dt>
<dd>
<ul class="clear">
<li><a href="http://bbs.xmfish.com/thread-htm-fid-6.html" target="_blank">鹭岛生活</a></li>
<li><a href="http://city.xmfish.com/" target="_blank">厦门城事</a></li>
</ul>
<ul class="clear">
<li><a href="http://bbs.xmfish.com/thread-htm-fid-27.html" target="_blank">谈天说地</a></li>
<li><a target="_blank" href="http://bbs.xmfish.com/thread-htm-fid-98.html">中秋博饼</a></li>
</ul>
</dd>
</dl>
<dl class="t_12_5_n_consume">
<dt><a href="javascript:">消费</a></dt>
<dd>
<ul class="clear">
<li><a href="http://house.xmfish.com/" target="_blank">房产楼市</a></li>
<li><a href="http://auto.xmfish.com/" target="_blank">轻车熟路</a></li>
<li><a href="http://bbs.xmfish.com/thread-htm-fid-75.html" target="_blank">亲子乐园</a></li>
</ul>
<ul class="clear">
<li><a href="http://home.xmfish.com/" target="_blank">家居装饰</a></li>
<li><a href="http://marry.xmfish.com/" target="_blank">结婚大事</a></li>
<li><a href="http://food.xmfish.com/" target="_blank">吃喝玩乐</a></li>
</ul>
</dd>
</dl>
<dl class="t_12_5_n_preferential">
<dt><a href="javascript:">优惠</a></dt>
<dd>
<ul class="clear">
<li style="padding:0 3px\9;"><a href="http://food.xmfish.com/coupon" target="_blank">优惠券</a></li>
<li style="padding:0 3px\9;"><a href="http://movie.xmfish.com/" target="_blank">爱电影</a></li>
<li><a href="http://food.xmfish.com/topic/taobaotongcheng" target="_blank" style="font-weight:bold;color:#f00;">淘宝同城</a></li>
</ul>
<ul class="clear">
<li style="padding:0 3px\9;"><a href="http://u.xmfish.com/xiamen/zhekou/" target="_blank">鱼乐购</a></li>
<li style="padding:0 3px\9;"><a href="http://bbs.xmfish.com/hack.php?H_name=jingpai" target="_blank">小鱼币</a></li>
<li style="padding:0 3px\9;"><a href="http://bbs.xmfish.com/thread-htm-fid-47.html" target="_blank">花样闺蜜</a></li>
</ul>
</dd>
</dl>
<dl class="t_12_5_n_service">
<dt><a href="javascript:">服务</a></dt>
<dd>
<ul class="clear">
<li><a href="http://bbs.xmfish.com/thread-htm-fid-55.html" target="_blank">物尽其用</a></li>
<li><a href="http://job.xmfish.com/" target="_blank">求职招聘</a></li>
<li><a href="http://tool.xmfish.com/" target="_blank">百宝箱</a></li>
</ul>
<ul class="clear">
<li><a href="http://bbs.xmfish.com/thread-htm-fid-93-type-881.html" target="_blank">房屋出租</a></li>
<li><a href="http://market.xmfish.com/" target="_blank">鱼鱼集市</a></li>
<li><a href="http://bbs.xmfish.com/read-htm-tid-8167850.html" target="_blank">小鱼帮</a></li>
</ul>
</dd>
</dl>
</div>
</div>
<div style="background: #fff; padding-top: 8px;">
<div class="bbs_general_info clear" style="margin-top:0;position:relative;">
<ul class="bbs_stat fl">
<li class="none_l_line"><b>今日</b><em>36775</em></li>
<li><b>昨日</b><em>47328</em></li>
<li><b>最高日</b><em>126620</em></li>
<li><b>主题</b><em>8011232</em></li>
<li><b>帖子</b><em>105334122</em></li>
<li><b>会员</b><em><a href="member.php" rel="external nofollow">979873</a></em></li>
</ul>
<div class="bbs_gopt fr">
<p class="bbs_gopt_1">
<a id="widthCfg" href="javascript:shiftStyle();" style="color:#0099d8;">[切换到宽版]</a>
<a href="http://u.xmfish.com/" rel="external nofollow">我的空间</a>
<a href="apps.php?q=article" rel="external nofollow">我的帖子</a>
<a href="apps.php?q=article&amp;see=post" rel="external nofollow">我的回复</a>
<a href="apps.php?q=collection" rel="external nofollow">我的收藏</a>
<a class="myhistory" href="javascript:;" rel="external nofollow">最近浏览</a>
<a href="u.php?a=friend" rel="external nofollow">好友近况</a>
</p>
<p class="bbs_gopt_2">
<a rel="external nofollow" id="td_KEY178" href="http://top.xmfish.com" target="_blank"  style="color:#FF0000" title="社区热帖排行榜" >24小时热帖</a>
<a rel="external nofollow" id="td_KEY11" href="searcher.php" style="color:#FF0000">搜索</a>
<a rel="external nofollow" id="td_KEY6" href="searcher.php?sch_time=newatc">最新帖子</a>
<a rel="external nofollow" id="td_KEY7" href="searcher.php?digest=1">精华区</a>
<a rel="external nofollow" id="td_KEY8" href="javascript:;">社区工具</a>
<a rel="external nofollow" id="td_KEY10" href="sort.php">统计</a>
<a rel="external nofollow" id="td_KEY12" href="faq.php">帮助</a>
   <div id="menu_KEY8" class="menu menu-post cc" style="display:none;">
<div class="menu-b" style="width:9em;">
   <p><a rel="external nofollow" id="td_KEY135" href="http://hot.xmfish.com/chanel/auth/">商务认证</a></p>
   <p><a rel="external nofollow" id="td_KEY139" href="hack.php?H_name=toolcenter">道具中心</a></p>
   <p><a rel="external nofollow" id="td_KEY40" href="hack.php?H_name=medal">勋章中心</a></p>
   <p><a rel="external nofollow" id="td_KEY179" href="jobcenter.php">任务中心</a></p>
<p><a id="td_KEY179" href="jobcenter.php" rel="external nofollow" >任务中心</a></p>
</div>
</div>
   <div id="menu_KEY10" class="menu menu-post cc" style="display:none;">
<div class="menu-b" style="width:9em;">
   <p><a rel="external nofollow" id="td_KEY13" href="sort.php">基本信息</a></p>
   <p><a rel="external nofollow" id="td_KEY14" href="sort.php?action=ipstate">到访IP统计</a></p>
   <p><a rel="external nofollow" id="td_KEY15" href="sort.php?action=team">管理团队</a></p>
   <p><a rel="external nofollow" id="td_KEY16" href="sort.php?action=admin">管理统计</a></p>
   <p><a rel="external nofollow" id="td_KEY17" href="sort.php?action=online">在线会员</a></p>
   <p><a rel="external nofollow" id="td_KEY18" href="sort.php?action=member">会员排行</a></p>
   <p><a rel="external nofollow" id="td_KEY19" href="sort.php?action=forum">版块排行</a></p>
   <p><a rel="external nofollow" id="td_KEY20" href="sort.php?action=article">帖子排行</a></p>
<p><a id="td_KEY179" href="jobcenter.php" rel="external nofollow" >任务中心</a></p>
</div>
</div>
</p>
</div>
</div>
<div class="cmp_v">
<span class="cmp_sp1">
<iframe allowtransparency="true" frameborder="0" src="http://cms.xmfish.com/chanel/www/cpm.html"
style="height: 20px" scrolling="no" width="100%" marginwidth="0" marginheight="0"></iframe>
</span>
<span class="cpm_sp2"><iframe width="115" height="22" frameborder="0" allowtransparency="true" marginwidth="0" marginheight="0" scrolling="no" border="0" src="http://widget.weibo.com/relationship/followbutton.php?width=115&height=22&uid=1747501965&style=2&btn=red&dpc=1"></iframe></span>
</div>
<div style="clear:both"></div>
<div style="margin-bottom:2px">

<script type="text/javascript" src="http://adm.xmfish.com/shw/675.js" charset="utf-8"></script>

</div>
</div>
<div style="text-align:center;margin:0 auto; ">
<!-- 新版社区文字(24条)-->
<script type="text/javascript" src="http://adm.xmfish.com/shw/690.js" charset="utf-8"></script>
<!--测试<script type="text/javascript" src="http://adm.xmfish.com/shw/716.js" charset="utf-8"></script>-->
</div>
</div>
<div class="wrap" id="wrap">
<div class="tac mb5"></div>
<div id="header">
<script language="javascript">
var timeoutSpecifyId = {};
var navBStyle = '';
function tmpClose(elementId) {
timeoutSpecifyId[elementId] = setTimeout(function() {
getObj(elementId).style.display = 'none';
}, 100);
}
function tmpHideAllCross(currentSubMenuId,showNavB) {
if(!getObj('navB')) return;
if (showNavB) {
getObj('navB').style.display = '';
}
var elements = getElementsByClassName('navB', getObj('navB'));
if(elements.length){
for (i=0; i<elements.length; i++) {
if (elements[i].id != '' && elements[i].id != currentSubMenuId) elements[i].style.display = 'none';
}
}
}
function ctrlSubMenu(parentId, subMenuId) {
try {
clearTimeout(timeoutSpecifyId[subMenuId]);
tmpHideAllCross(subMenuId,true);
getObj(subMenuId).style.display = '';
getObj(parentId).onmouseout = function() {
tmpClose(subMenuId);
timeoutSpecifyId[parentId] = setTimeout(function() {
if (navBStyle) {
getObj('navB').style.display = 'none';
}
}, 100);
getObj(parentId).onmouseout = '';
};
getObj(subMenuId).onmouseout = function() {
tmpClose(subMenuId);
if (navBStyle) {
getObj('navB').style.display = 'none';
}
};
getObj(subMenuId).onmouseover = function() {
clearTimeout(timeoutSpecifyId[subMenuId]);
clearTimeout(timeoutSpecifyId[parentId]);
getObj(subMenuId).style.display = '';
getObj('navB').style.display = '';
};
}catch(e){}
}
</script>
</div>
<div class="main-wrap">
<div id="main">
<div style="text-align:center;margin-top:5px">
<script type="text/javascript" src="http://adm.xmfish.com/shw/35.js" charset="utf-8"></script>
</div>
<div style="text-align:center;margin-top:5px">
<script type="text/javascript" src="http://adm.xmfish.com/shw/353.js" charset="utf-8"></script>
</div>
<div style="text-align:center;margin-top:5px">
<script type="text/javascript" src="http://adm.xmfish.com/shw/979.js" charset="utf-8"></script>
</div>
<link rel="stylesheet" href="/template/wind/images/indextop/indextop_2.css" type="text/css" media="screen,projection" charset="utf-8"/>
<script language="JavaScript" src="/template/wind/images/indextop/indextop.js"></script>
<script language="JavaScript">
function changetab(tab,panel){
jQuery("#kuaijie,#bankuai").attr("class","");
jQuery("#kuaijie_panel,#bankuai_panel").css("display","none");
jQuery("#"+tab).attr("class","active");
jQuery("#"+panel).css('display','block');
}
</script>
<div class="review_panel clear">
<div class="rv_lf">
<div class="rv_con">
<div><iframe scrolling="no" frameborder="0" src="http://cms.xmfish.com/chanel/other/bbs_top.html?type=5" height="73" width="100%"></iframe></div>
<div class="rv_rec">
<ul class="rv_tab fl">
<li name="a_tag" id="a_tag" class="active"  style="border-left:#ddd 1px solid;">
<i></i>
<a href="javascript:" rel="external nofollow">今日热门</a>
</li>
<li name="a_tag" id="a_tag">
<i></i>
<a href="javascript:" rel="external nofollow">最新群组活动</a>
</li>
</ul>
<div class="rv_bulletin fr">
<em class="bulletin fl"><a href="http://bbs.xmfish.com/notice.php" target="_blank" rel="external nofollow">社区公告:</a></em>
<iframe width="74%" scrolling="no" height="24" frameborder="0" src="http://cms.xmfish.com/chanel/other/bbs_top.html?type=6"></iframe>
   </div>
</div>
<div>
<div>
   <ul class="rv_news_list" id="a_content" name="a_content">
   <li><span>【<a href='thread-htm-fid-6.html' target='_blank' rel='external nofollow'>鹭岛生活</a>】</span><a href='read-htm-tid-8703617.html' title='[07-31]自称厦大蝶泳冠军的陈氏大哥 小女子我是学游泳不是搞援交' target='_blank'>自称厦大蝶泳冠军的陈氏大哥 小女子我是学游泳</a></li><li><span>【<a href='thread-htm-fid-6.html' target='_blank' rel='external nofollow'>鹭岛生活</a>】</span><a href='read-htm-tid-8704035.html' title='[07-31]东渡公交站黄则和被砸了,好危险哦' target='_blank'>东渡公交站黄则和被砸了,好危险哦</a></li><li><span>【<a href='thread-htm-fid-6.html' target='_blank' rel='external nofollow'>鹭岛生活</a>】</span><a href='read-htm-tid-8703306.html' title='[07-30]这女子绝对是小鱼网上的某位美铝!!!有图!' target='_blank'>这女子绝对是小鱼网上的某位美铝!!!有图!</a></li><li><span>【<a href='thread-htm-fid-6.html' target='_blank' rel='external nofollow'>鹭岛生活</a>】</span><a href='read-htm-tid-8702131.html' title='【七嘴八舌】携手“94壹+贰”——136期:你有与异性暧昧过吗?你能接受Ta跟异性暧昧吗?' target='_blank'>【七嘴八舌】携手“94壹+贰”——136期:你有与</a></li><li><span>【<a href='thread-htm-fid-6.html' target='_blank' rel='external nofollow'>鹭岛生活</a>】</span><a href='read-htm-tid-8702200.html' title='[07-30]谁能看出图中哪里有问题!!' target='_blank'>谁能看出图中哪里有问题!!</a></li><li><span>【<a href='thread-htm-fid-27.html' target='_blank' rel='external nofollow'>谈天说地</a>】</span><a href='read-htm-tid-8701634.html' title='[07-30]羡慕嫉妒恨啊,一个女生的十八岁生日,男朋友送的礼物从一岁补到十八岁,有男朋友好了不起啊!' target='_blank'>羡慕嫉妒恨啊,一个女生的十八岁生日,男朋友送</a></li><li><span>【<a href='thread-htm-fid-6.html' target='_blank' rel='external nofollow'>鹭岛生活</a>】</span><a href='read-htm-tid-8703928.html' title='在国营企业,这奇葩工资在厦门能活么?直接上图!' target='_blank'>在国营企业,这奇葩工资在厦门能活么?直接上图</a></li><li><span>【<a href='thread-htm-fid-6.html' target='_blank' rel='external nofollow'>鹭岛生活</a>】</span><a href='read-htm-tid-8704496.html' title='[07-31]海投天湖城为什么家门口的幼儿园,小区的幼儿不能入园,天理何在?' target='_blank'>海投天湖城为什么家门口的幼儿园,小区的幼儿不</a></li><li><span>【<a href='thread-htm-fid-6.html' target='_blank' rel='external nofollow'>鹭岛生活</a>】</span><a href='read-htm-tid-8705403.html' title='[07-31]关于“自称厦大蝶泳冠军的陈氏大哥 小女子我是学游泳不是搞援交”' target='_blank'>关于“自称厦大蝶泳冠军的陈氏大哥 小女子我是</a></li><li><span>【<a href='thread-htm-fid-27.html' target='_blank' rel='external nofollow'>谈天说地</a>】</span><a href='read-htm-tid-8701926.html' title='[07-30]【小鱼电台】你最讨厌什么家务活?' target='_blank'>【小鱼电台】你最讨厌什么家务活?</a></li>
   </ul>
</div>
<div>
  <ul class="rv_news_list" id="a_content" name="a_content" style="display:none;">
  <li><span>【<a href='apps.php?q=group&cyid=43' target='_blank' rel='external nofollow'>厦门软二</a>】</span><a href='apps.php?q=group&a=active&job=view&cyid=43&id=185' title='8月4日六鳌一日游' target='_blank'>8月4日六鳌一日游</a></li><li><span>【<a href='apps.php?q=group&cyid=60' target='_blank' rel='external nofollow'>小鱼摄影团</a>】</span><a href='apps.php?q=group&a=active&job=view&cyid=60&id=184' title='莲花路口东--金榜影像第八期免费摄影沙龙讲座' target='_blank'>莲花路口东--金榜影像第八期免费摄影沙龙讲座</a></li><li><span>【<a href='apps.php?q=group&cyid=56' target='_blank' rel='external nofollow'>乒乓一族</a>】</span><a href='apps.php?q=group&a=active&job=view&cyid=56&id=183' title='厦门小鱼乒乓7月31日(周三晚上)力动(博乐)乒乓活动' target='_blank'>厦门小鱼乒乓7月31日(周三晚上)力动(博乐)乒乓活动</a></li><li><span>【<a href='apps.php?q=group&cyid=61' target='_blank' rel='external nofollow'>户外行</a>】</span><a href='apps.php?q=group&a=active&job=view&cyid=61&id=182' title='7月31号晚7点,狐尾山夜游' target='_blank'>7月31号晚7点,狐尾山夜游</a></li><li><span>【<a href='apps.php?q=group&cyid=61' target='_blank' rel='external nofollow'>户外行</a>】</span><a href='apps.php?q=group&a=active&job=view&cyid=61&id=181' title='8月4日&quot;闽南第一瀑&quot;雄师瀑布戏水野炊腐败游' target='_blank'>8月4日&quot;闽南第一瀑&quot;雄师瀑布戏水野炊腐败游</a></li><li><span>【<a href='apps.php?q=group&cyid=43' target='_blank' rel='external nofollow'>厦门软二</a>】</span><a href='apps.php?q=group&a=active&job=view&cyid=43&id=180' title='7月31日【鹭岛夜游】夜游集美学村' target='_blank'>7月31日【鹭岛夜游】夜游集美学村</a></li><li><span>【<a href='apps.php?q=group&cyid=61' target='_blank' rel='external nofollow'>户外行</a>】</span><a href='apps.php?q=group&a=active&job=view&cyid=61&id=179' title='骑行——夜间骑行,爬坡锻炼' target='_blank'>骑行——夜间骑行,爬坡锻炼</a></li><li><span>【<a href='apps.php?q=group&cyid=43' target='_blank' rel='external nofollow'>厦门软二</a>】</span><a href='apps.php?q=group&a=active&job=view&cyid=43&id=178' title='观音山沙滩露营·看日出' target='_blank'>观音山沙滩露营·看日出</a></li><li><span>【<a href='apps.php?q=group&cyid=56' target='_blank' rel='external nofollow'>乒乓一族</a>】</span><a href='apps.php?q=group&a=active&job=view&cyid=56&id=177' title='厦门小鱼乒乓7月27日(周六晚上)力动(博乐)乒乓活动' target='_blank'>厦门小鱼乒乓7月27日(周六晚上)力动(博乐)乒乓活动</a></li><li><span>【<a href='apps.php?q=group&cyid=57' target='_blank' rel='external nofollow'>羽球之家</a>】</span><a href='apps.php?q=group&a=active&job=view&cyid=57&id=176' title='7月28日周天下午羽毛球活动' target='_blank'>7月28日周天下午羽毛球活动</a></li>
  </ul>
</div>
</div>
</div>
</div>
<div class="bbs_scopt">
<div class="bbs_punch"><a class="punch" href="u.php" target="_blank" title="每日签到"><span>07月</span><em>31</em></a></div>
<div class="bbs_scpanel_tt">
<ul>
<li><a id="kuaijie" class="active" href="http://bbs.xmfish.com/group.php" target="_blank">热门群组</a></li>
<li><a id="bankuai" href="javascript:" target="_blank">快捷导航</a></li>
</ul>
</div>
<div class="bbs_scpanel_tx">
<div id="kuaijie_panel">
<ul class="fish_plate"><li><span><a href="apps.php?q=group&cyid=49" target="_blank"><img alt="游泳俱乐部" src="http://img.xmfish.com/attachment/cn_img/colony_49.jpg" style="width:50px;height:50px;"></a></span><em><a href="apps.php?q=group&cyid=49" target="_blank" title="游泳俱乐部">游泳俱乐部</a></em></li><li><span><a href="apps.php?q=group&cyid=56" target="_blank"><img alt="乒乓一族" src="http://img.xmfish.com/attachment/cn_img/colony_56.jpg" style="width:50px;height:50px;"></a></span><em><a href="apps.php?q=group&cyid=56" target="_blank" title="乒乓一族">乒乓一族</a></em></li><li><span><a href="apps.php?q=group&cyid=60" target="_blank"><img alt="小鱼摄影团" src="http://img.xmfish.com/attachment/cn_img/colony_60.jpg" style="width:50px;height:50px;"></a></span><em><a href="apps.php?q=group&cyid=60" target="_blank" title="小鱼摄影团">小鱼摄影团</a></em></li><li><span><a href="apps.php?q=group&cyid=55" target="_blank"><img alt="篮球周末" src="http://img.xmfish.com/attachment/cn_img/colony_55.png" style="width:50px;height:50px;"></a></span><em><a href="apps.php?q=group&cyid=55" target="_blank" title="篮球周末">篮球周末</a></em></li><li><span><a href="apps.php?q=group&cyid=58" target="_blank"><img alt="足球雄起" src="http://img.xmfish.com/attachment/cn_img/colony_58.jpg" style="width:50px;height:50px;"></a></span><em><a href="apps.php?q=group&cyid=58" target="_blank" title="足球雄起">足球雄起</a></em></li><li><span><a href="apps.php?q=group&cyid=50" target="_blank"><img alt="小鱼骑士团" src="http://img.xmfish.com/attachment/cn_img/colony_50.jpg" style="width:50px;height:50px;"></a></span><em><a href="apps.php?q=group&cyid=50" target="_blank" title="小鱼骑士团">小鱼骑士团</a></em></li></ul>
</div>
<div id="bankuai_panel" style="display:none;">
      
<ul class="fish_plate">
<li>
<span><a href="http://bbs.xmfish.com/thread-htm-fid-93-type-881.html" target="_blank"><img alt="我要租房" src="http://img.xmfish.com/attachment/forumlogo/147.png"></a></span>
<em><a href="http://bbs.xmfish.com/thread-htm-fid-93-type-881.html" target="_blank" title="我要租房">我要租房</a></em>
</li>
<li>
<span><a href="http://bbs.xmfish.com/thread-htm-fid-55.html" target="_blank"><img alt="物尽其用" src="http://img.xmfish.com/attachment/forumlogo/55.png"></a></span>
<em><a href="http://bbs.xmfish.com/thread-htm-fid-55.html" target="_blank" title="物尽其用">物尽其用</a></em>
</li>
<li>
<span><a href="http://job.xmfish.com/" target="_blank"><img alt="求职招聘" src="http://img.xmfish.com/attachment/forumlogo/260.png"></a></span>
<em><a href="http://job.xmfish.com/" target="_blank" title="求职招聘">求职招聘</a></em>
</li>
<li>
<span><a href="http://bbs.xmfish.com/thread-htm-fid-6.html" target="_blank"><img alt="鹭岛民生" src="http://img.xmfish.com/attachment/forumlogo/6.png"></a></span>
<em><a href="http://bbs.xmfish.com/thread-htm-fid-6.html" target="_blank" title="鹭岛民生">鹭岛民生</a></em>
</li>
<li>
<span><a href="http://bbs.xmfish.com/thread-htm-fid-27.html" target="_blank"><img alt="谈天说地" src="http://img.xmfish.com/attachment/forumlogo/27.png"></a></span>
<em><a href="http://bbs.xmfish.com/thread-htm-fid-27.html" target="_blank" title="谈天说地">谈天说地</a></em>
</li>
<li>
<span><a href="http://marry.xmfish.com/" target="_blank"><img alt="结婚大事" src="http://img.xmfish.com/attachment/forumlogo/136.png"></a></span>
<em><a href="http://marry.xmfish.com/" target="_blank" title="结婚大事">结婚大事</a></em>
</li>
</ul>
</div>
</div>
</div>
</div>
<div style="margin-top:5px"></div>
<div id="pw_content" style="border:none; background:none;">
<style>
.forum_panel { margin-top:5px; border:#0673b5 1px solid;background-color:#f8f8f8;}
.tTable { padding-bottom:10px; background-color:#f8f8f8;}
</style>
<div  style="width:960px; margin:0px auto 0 auto;">
<script type="text/javascript" src="http://adm.xmfish.com/shw/667.js" charset="utf-8"></script>
</div>
<!-- modify by xieym 2012-02-29 16:20
<script type="text/javascript" src="http://app.phpwind.net/static/js/client.js"></script>
<script language="JavaScript">
var server = new PwJs.Server("pwthread");
server.start();
</script>
-->
<div id="t_65" class="forum_panel">
<div class="h"><a class="closeicon fr cp"><img id="img_65" alt="展开收起" src="images/wind/index/cate_fold.gif" /></a>
<h3 class="cateT"><a href="index-htm-m-bbs-cateid-65.html" rel="external nofollow">≡本月焦点≡</a></h3></div>
<div class="tTable">
<table width="100%" style="table-layout:fixed;">
<tbody id="cate_65" style="display:;">
<tr class="tr3 " id="fid_98">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-98.html" target="_blank" title="中秋博饼" rel="external nofollow"><img alt="中秋博饼" src="http://img.xmfish.com/attachment/forumlogo/98.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-98.html" id="fn_98" target="_blank" class="mr10"><font style="font-size:14px;color:red;">中秋博饼</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">198</span>)</span>
<p id="desc_98"><font color=#757575>小鱼网2013第七届中秋线上博饼活动即将启动!</font></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%D2%BB%C7%D0%B0%B2%BA%C3">一切安好</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>16910</em>/210244</td>
<td class="re">
<p><a href="read-htm-tid-8662536-page-e.html#a" class="s4" rel="external nofollow">Re:8.1日博饼正式开启,8.1- ..</a></p>
<p class="fNum">2013-07-31 16:11 <a href="u.php?username=zbba" rel="external nofollow">zbba</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_238">
<th width="60" style="text-align:center;"><a href="http://hot.xmfish.com/chanel/pinche/" target="_blank" title="厦门拼车" rel="external nofollow"><img alt="厦门拼车" src="http://img.xmfish.com/attachment/forumlogo/238.png"></a></th>
<th>
<h2 class="forumT"><a href="http://hot.xmfish.com/chanel/pinche/" id="fn_238" target="_blank" class="mr10"><font style="font-size:14px">厦门拼车</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">157</span>)</span>
<p id="desc_238"><font color=red>6.25-9.1海沧大桥翻修期间建议大家充分利用单双号拼车方式出行(不支持客户端发帖)</font></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=bitfish">bitfish</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>29630</em>/30428</td>
<td class="re">
<p><a href="read-htm-tid-8705374-page-e.html#a" class="s4" rel="external nofollow">31号,今天下午回枫亭泉港</a></p>
<p class="fNum">2013-07-31 15:59 <a href="u.php?username=hellolisa" rel="external nofollow">hellolisa</a></p>
</td>
</tr>
<tr class="tr3 tr3none" id="fid_143">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-143.html" target="_blank" title="鱼网情深" rel="external nofollow"><img alt="鱼网情深" src="http://img.xmfish.com/attachment/forumlogo/143.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-143.html" id="fn_143" target="_blank" class="mr10"><font style="font-size:14px">鱼网情深</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">82</span>)</span>
<p id="desc_143"><font color=red>小鱼征婚交友专版,注册会员均可访问,但Super认证会员或中级小鱼以上级别才能看帖</font></p>
<p>子版:&nbsp;<a href="thread-htm-fid-367.html">【总工会俱乐部】</a></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%CD%C3%D7%D3%B0%AE%C3%C0%C0%F6">兔子爱美丽</a> <a rel="external nofollow" href="u.php?username=ViLu">ViLu</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>7818</em>/195284</td>
<td class="re">
<p><a href="read-htm-tid-8695461-page-e.html#a" class="s4" rel="external nofollow">[07-29]家穷人丑、一米四九  ..</a></p>
<p class="fNum">2013-07-31 15:57 <a href="u.php?username=相约到明天" rel="external nofollow">相约到明天</a></p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="ppo_960x60" style="width:960px; margin:5px auto 0 auto;">
<script type="text/javascript" src="http://adm.xmfish.com/shw/36.js" charset="utf-8"></script>
</div>
<div id="t_97" class="forum_panel">
<div class="h"><a class="closeicon fr cp"><img id="img_97" alt="展开收起" src="images/wind/index/cate_fold.gif" /></a>
<h3 class="cateT"><a href="index-htm-m-bbs-cateid-97.html" class="mr10">≡同城活动≡</a></h3></div>
<div class="tTable">
<table width="100%" style="table-layout:fixed;">
<tbody style="display:;" id="cate_97" class="across">
<tr class="tr3 tr3none">
<th  id="fid_129" height="40">
      <a href="thread-htm-fid-129.html" target="_blank" title="自助活动" rel="external nofollow"><img src="http://img.xmfish.com/attachment/forumlogo/129.png" class="fl mr10" alt="自助活动" /></a>
<h2 class="forumT mr10"><a href="thread-htm-fid-129.html" id="fn_129"><font style="font-size:14px">自助活动</font></a></h2>
<span class="s2 mr10">(今日1)</span>
<p class="fNum"><span class="mr10">主题:3874</span>帖子:72106</p>
<p class="fNum"><a href="read-htm-tid-8558413-page-e.html#a">最后发帖:2013-07-31 15:46</a></p>
</th>
<th  id="fid_395" height="40">
      <a href="thread-htm-fid-395.html" target="_blank" title="商家活动" rel="external nofollow"><img src="http://img.xmfish.com/attachment/forumlogo/395.png" class="fl mr10" alt="商家活动" /></a>
<h2 class="forumT mr10"><a href="thread-htm-fid-395.html" id="fn_395"><font style="font-size:14px">商家活动</font></a></h2>
<span class="s2 mr10">(今日115)</span>
<p class="fNum"><span class="mr10">主题:2617</span>帖子:64452</p>
<p class="fNum"><a href="read-htm-tid-8596731-page-e.html#a">最后发帖:2013-07-31 16:06</a></p>
</th>
<th  id="fid_284" height="40">
      <a href="thread-htm-fid-284.html" target="_blank" title="往期回顾" rel="external nofollow"><img src="http://img.xmfish.com/attachment/forumlogo/284.png" class="fl mr10" alt="往期回顾" /></a>
<h2 class="forumT mr10"><a href="thread-htm-fid-284.html" id="fn_284"><font style="font-size:14px">往期回顾</font></a></h2>
<p class="fNum"><span class="mr10">主题:41</span>帖子:118</p>
<p class="fNum"><a href="read-htm-tid-8124752-page-e.html#a">最后发帖:2013-03-17 23:57</a></p>
</th>
</tr>
</tbody>
</table>
</div>
</div>
<div  style="width:960px; margin:5px auto 0 auto;">
<script type="text/javascript" src="http://adm.xmfish.com/shw/378.js" charset="utf-8"></script>
</div>
<div id="t_3" class="forum_panel">
<div class="h"><a class="closeicon fr cp"><img id="img_3" alt="展开收起" src="images/wind/index/cate_fold.gif" /></a>
<h3 class="cateT"><a href="index-htm-m-bbs-cateid-3.html" rel="external nofollow">≡鱼塘大院≡</a></h3></div>
<div class="tTable">
<table width="100%" style="table-layout:fixed;">
<tbody id="cate_3" style="display:;">
<tr class="tr3 " id="fid_6">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-6.html" target="_blank" title="鹭岛生活" rel="external nofollow"><img alt="鹭岛生活" src="http://img.xmfish.com/attachment/forumlogo/6.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-6.html" id="fn_6" target="_blank" class="mr10"><font style="font-size:14px">鹭岛生活</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">7539</span>)</span>
<p id="desc_6"><font color=#757575>关注厦门民生,关注你我身边事!</font></p>
<p>子版:&nbsp;<a href="thread-htm-fid-217.html"><font color=red>【小鱼希望小学】</font></a><a href="thread-htm-fid-78.html"><font style="font-size:14px">【高考专题】</font></a></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%BA%AC%C9%B3">含沙</a> <a rel="external nofollow" href="u.php?username=CSUST">CSUST</a> <a rel="external nofollow" href="u.php?username=%C7%E7%CC%EC%C7%C9%D6%ED">晴天巧猪</a> <a rel="external nofollow" href="u.php?username=%C3%BF%C8%D5%D2%BB%B9%CA%CA%C2">每日一故事</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>1019312</em>/22901231</td>
<td class="re">
<p><a href="read-htm-tid-8698804-page-e.html#a" class="s4" rel="external nofollow">[07-30]厦门教育界“PX”风  ..</a></p>
<p class="fNum">2013-07-31 16:14 <a href="u.php?username=小小鱼儿乐游游" rel="external nofollow">小小鱼儿乐游游</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_27">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-27.html" target="_blank" title="谈天说地" rel="external nofollow"><img alt="谈天说地" src="http://img.xmfish.com/attachment/forumlogo/27.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-27.html" id="fn_27" target="_blank" class="mr10"><font style="font-size:14px">谈天说地</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">1844</span>)</span>
<p id="desc_27"><font color=#757575>综合话题讨论所在,请不要盲目灌水,互相交流才会有收获。</font></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%CE%DE%B8%F9%B2%DD">无根草</a> <a rel="external nofollow" href="u.php?username=%C4%BE%DC%BD">木芙</a> <a rel="external nofollow" href="u.php?username=%CA%AF%C1%F1%C2%CC%B2%E8">石榴绿茶</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>553828</em>/12515804</td>
<td class="re">
<p><a href="read-htm-tid-8586400-page-e.html#a" class="s4" rel="external nofollow">Re:发个搞笑的</a></p>
<p class="fNum">2013-07-31 16:14 <a href="u.php?username=lixinaglinkeru" rel="external nofollow">lixinaglinkeru</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_9">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-9.html" target="_blank" title="心情故事" rel="external nofollow"><img alt="心情故事" src="http://img.xmfish.com/attachment/forumlogo/9.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-9.html" id="fn_9" target="_blank" class="mr10"><font style="font-size:14px">心情故事</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">316</span>)</span>
<p id="desc_9"><font color=#757575>这里可以容纳你所有的心绪,原创作品,心情文字;心动的,痛楚的,憧憬的,都请用文字来铭记</font></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=fdnike">fdnike</a> <a rel="external nofollow" href="u.php?username=%D4%C2%D2%FE%C9%B3%C7%F0">月隐沙丘</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>82956</em>/1591189</td>
<td class="re">
<p><a href="read-htm-tid-8698843-page-e.html#a" class="s4" rel="external nofollow">Re:我应该怎么办?</a></p>
<p class="fNum">2013-07-31 16:06 <a href="u.php?username=超级大坏蛋东" rel="external nofollow">超级大坏蛋东</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_375">
<th width="60" style="text-align:center;"><a href="http://food.xmfish.com/" target="_blank" title="吃喝玩乐" rel="external nofollow"><img alt="吃喝玩乐" src="http://img.xmfish.com/attachment/forumlogo/32.png"></a></th>
<th>
<h2 class="forumT"><a href="http://food.xmfish.com/" id="fn_375" target="_blank" class="mr10"><font style="font-size:14px">吃喝玩乐</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">334</span>)</span>
<p id="desc_375"><font color=#757575>来交流各地的特色美食,推荐好吃好喝的特色店,再SHOW一下DIY的家常菜</font></p>
<p>子版:&nbsp;<a href="thread-htm-fid-376.html">【吃喝玩乐】</a><a href="thread-htm-fid-32.html">【淘优惠】</a></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=ABAB">ABAB</a> <a rel="external nofollow" href="u.php?username=%CF%B2%C0%D6">喜乐</a> <a rel="external nofollow" href="u.php?username=%B1%A6%B1%B4%BA%D0%D7%D3">宝贝盒子</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>110688</em>/2382913</td>
<td class="re">
<p><a href="read-htm-tid-8696827-page-e.html#a" class="s4" rel="external nofollow">Re:[07-29]每个人都是生活的 ..</a></p>
<p class="fNum">2013-07-31 16:10 <a href="u.php?username=诺可" rel="external nofollow">诺可</a></p>
</td>
</tr>
<tr class="tr3 tr3none" id="fid_47">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-47.html" target="_blank" title="花样闺蜜" rel="external nofollow"><img alt="花样闺蜜" src="http://img.xmfish.com/attachment/forumlogo/47.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-47.html" id="fn_47" target="_blank" class="mr10"><font style="font-size:14px">花样闺蜜</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">107</span>)</span>
<p id="desc_47"><font color=#757575> 美丽苗条的秘密,时尚男女的秀场,手工达人的天地,风采区,女人街,年轻的你就该来这里!</font></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=kindpop">kindpop</a> <a rel="external nofollow" href="u.php?username=%D0%A1%B1%E0%C2%E5%C2%E5">小编洛洛</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>95929</em>/2059160</td>
<td class="re">
<p><a href="read-htm-tid-8658771-page-e.html#a" class="s4" rel="external nofollow">Re:[07-22]我和宝贝</a></p>
<p class="fNum">2013-07-31 16:12 <a href="u.php?username=好多鱼啊啊啊啊" rel="external nofollow">好多鱼啊啊啊啊</a></p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div  style="width:960px; margin:5px auto 0 auto;">
<script type="text/javascript" src="http://adm.xmfish.com/shw/379.js" charset="utf-8"></script>
</div>
<div id="t_183" class="forum_panel">
<div class="h"><a class="closeicon fr cp"><img id="img_183" alt="展开收起" src="images/wind/index/cate_fold.gif" /></a>
<h3 class="cateT"><a href="index-htm-m-bbs-cateid-183.html" rel="external nofollow">≡人生大事≡</a></h3></div>
<div class="tTable">
<table width="100%" style="table-layout:fixed;">
<tbody id="cate_183" style="display:;">
<tr class="tr3 " id="fid_147">
<th width="60" style="text-align:center;"><a href="http://house.xmfish.com" target="_blank" title="房产聚焦" rel="external nofollow"><img alt="房产聚焦" src="http://img.xmfish.com/attachment/forumlogo/147.png"></a></th>
<th>
<h2 class="forumT"><a href="http://house.xmfish.com" id="fn_147" target="_blank" class="mr10"><font style="font-size:14px">房产聚焦</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">1754</span>)</span>
<p id="desc_147"><a href="http://house.xmfish.com" style="color:blue;">【房产资讯】</a>、<a href="http://house.xmfish.com/#1" style="color:blue;">【新房】</a>、<a href="http://house.xmfish.com/#2" style="color:blue;">【租房】</a>、<a href="http://house.xmfish.com/#3" style="color:blue;">【二手房】</a></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%C0%AD%C0%AD%D2%B3%CC%EC">拉拉页天</a> <a rel="external nofollow" href="u.php?username=%B3%C1%E8%F7">沉梓</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>947371</em>/5957674</td>
<td class="re">
<p><a href="read-htm-tid-8700755-page-e.html#a" class="s4" rel="external nofollow">回 3楼(rubysun) 的帖子</a></p>
<p class="fNum">2013-07-31 16:14 <a href="u.php?username=xiaoxiaorong" rel="external nofollow">xiaoxiaorong</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_165">
<th width="60" style="text-align:center;"><a href="http://home.xmfish.com" target="_blank" title="家居装饰" rel="external nofollow"><img alt="家居装饰" src="http://img.xmfish.com/attachment/forumlogo/165.png"></a></th>
<th>
<h2 class="forumT"><a href="http://home.xmfish.com" id="fn_165" target="_blank" class="mr10"><font style="font-size:14px">家居装饰</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">403</span>)</span>
<p id="desc_165"><font color=#757575>交流家装经验,分享装修装饰过程的喜怒哀乐及成果!</font></p>
<p>子版:&nbsp;<a href='thread-htm-fid-85.html'>【装修讨论】</a><a href='thread-htm-fid-160.html'>【家装日记】</a><a href='thread-htm-fid-119.html'>【装修互助】</a><a href='thread-htm-fid-384.html'>【设计会所】</a><a href='thread-htm-fid-153.html'>【家装超市】</a></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%B2%BB%C8%E7%BD%D0%C4%AC%C4%AC">不如叫默默</a> <a rel="external nofollow" href="u.php?username=sophiafish">sophiafish</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>99841</em>/1977345</td>
<td class="re">
<p><a href="read-htm-tid-8706428-page-e.html#a" class="s4" rel="external nofollow">Re:[07-31]房子要装修</a></p>
<p class="fNum">2013-07-31 16:12 <a href="u.php?username=助理" rel="external nofollow">助理</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_267">
<th width="60" style="text-align:center;"><a href="http://auto.xmfish.com" target="_blank" title="轻车熟路" rel="external nofollow"><img alt="轻车熟路" src="http://img.xmfish.com/attachment/forumlogo/267.png"></a></th>
<th>
<h2 class="forumT"><a href="http://auto.xmfish.com" id="fn_267" target="_blank" class="mr10"><font style="font-size:14px">轻车熟路</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">1019</span>)</span>
<p id="desc_267"><font color=#757575>学车、购车、用车、养车、拼车,以车会友</font></p>
<p>子版:&nbsp;<a href='thread-htm-fid-74.html'>【谈车论驾】</a><a href='thread-htm-fid-166.html'>【学车天地】</a><a href='thread-htm-fid-426.html'>【准车主俱乐部】</a><a href='http://auto.xmfish.com/4s'>【精品4S】</a><a href='thread-htm-fid-239.html'>【二手车】</a><a href='thread-htm-fid-167.html'>【租车】</a><a href='thread-htm-fid-232.html'>【车标优惠商家】</a></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%C5%E3%C4%E3%C8%A5%BF%B4%C3%AB%C3%AB%D3%EA">陪你去看毛毛雨</a> <a rel="external nofollow" href="u.php?username=%D1%A9%D1%D2">雪岩</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>252971</em>/2659357</td>
<td class="re">
<p><a href="read-htm-tid-8610896-page-e.html#a" class="s4" rel="external nofollow">Re:[07-12]大众宝来出租130/ ..</a></p>
<p class="fNum">2013-07-31 16:13 <a href="u.php?username=心绪飘渺" rel="external nofollow">心绪飘渺</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_136">
<th width="60" style="text-align:center;"><a href="http://marry.xmfish.com" target="_blank" title="结婚大事" rel="external nofollow"><img alt="结婚大事" src="http://img.xmfish.com/attachment/forumlogo/136.png"></a></th>
<th>
<h2 class="forumT"><a href="http://marry.xmfish.com" id="fn_136" target="_blank" class="mr10"><font style="font-size:14px">结婚大事</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">738</span>)</span>
<p id="desc_136"><font color=#757575>婚嫁是人生大事,少不了精心筹备,来这里交流经验,分享喜悦吧</font></p>
<p>子版:&nbsp;<a href="thread-htm-fid-137.html"><font color=deeppink><b>【婚庆购物街】</b></font></a><a href="thread-htm-fid-140.html"><font color=deeppink><b>【婚礼采购】</b></font></a><a href="thread-htm-fid-420.html"><font style="font-size:14px">【小鱼梦想秀·爱在嘉年华】</font></a></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=ViLu">ViLu</a> <a rel="external nofollow" href="u.php?username=%C0%B6%D2%F8%B2%DD">蓝银草</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>46066</em>/2244823</td>
<td class="re">
<p><a href="read-htm-tid-7965300-page-e.html#a" class="s4" rel="external nofollow">Re:[01-29]【2013新婚鱼鱼合 ..</a></p>
<p class="fNum">2013-07-31 16:13 <a href="u.php?username=就是傻瓜的爱" rel="external nofollow">就是傻瓜的爱</a></p>
</td>
</tr>
<tr class="tr3 tr3none" id="fid_75">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-75.html" target="_blank" title="亲子乐园" rel="external nofollow"><img alt="亲子乐园" src="http://img.xmfish.com/attachment/forumlogo/75.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-75.html" id="fn_75" target="_blank" class="mr10"><font style="font-size:14px">亲子乐园</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">610</span>)</span>
<p id="desc_75"><font color=#757575>给我们的孩子更多一点爱,让我们的未来更有希望!</font></p>
<p>子版:&nbsp;<a href="thread-htm-fid-141.html">【亲子二手用品交易区】</a><a href="thread-htm-fid-201.html">【鱼宝淘淘乐】</a></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%B7%B9%BA%D0%CB%AE%D1%FD">饭盒水妖</a> <a rel="external nofollow" href="u.php?username=%C3%C9%C3%C9%B2%E8%B9%DD">蒙蒙茶馆</a> <a rel="external nofollow" href="u.php?username=%D0%A1%B1%E0%B0%A2%C0%EA">小编阿狸</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>171727</em>/2405360</td>
<td class="re">
<p><a href="read-htm-tid-8701263-page-e.html#a" class="s4" rel="external nofollow">Re:[07-30]欧式面包——DIY ..</a></p>
<p class="fNum">2013-07-31 16:11 <a href="u.php?username=粒盘" rel="external nofollow">粒盘</a></p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div  style="width:960px; margin:5px auto 0 auto;">
<script type="text/javascript" src="http://adm.xmfish.com/shw/380.js" charset="utf-8"></script>
</div>
<div id="t_82" class="forum_panel">
<div class="h"><a class="closeicon fr cp"><img id="img_82" alt="展开收起" src="images/wind/index/cate_fold.gif" /></a>
<h3 class="cateT"><a href="index-htm-m-bbs-cateid-82.html" rel="external nofollow">≡便民分类≡</a></h3></div>
<div class="tTable">
<table width="100%" style="table-layout:fixed;">
<tbody id="cate_82" style="display:;">
<tr class="tr3 " id="fid_55">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-55.html" target="_blank" title="物尽其用" rel="external nofollow"><img alt="物尽其用" src="http://img.xmfish.com/attachment/forumlogo/55.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-55.html" id="fn_55" target="_blank" class="mr10"><font style="font-size:14px">物尽其用</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">3824</span>)</span>
<p id="desc_55"><font color=#757575>有个人使用闲置的东东可在此发布,谢绝多次发布!</font>(需审核)</p>
<p>子版:&nbsp;<a href="thread-htm-fid-67.html">回收站</a></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=monic">monic</a> <a rel="external nofollow" href="u.php?username=%CD%C3%D7%D3%B0%AE%C3%C0%C0%F6">兔子爱美丽</a> <a rel="external nofollow" href="u.php?username=%C4%BE%D2%D7%B3%C9%C1%D6">木易成林</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>1385599</em>/17156616</td>
<td class="re">
<p><a href="read-htm-tid-8698733-page-e.html#a" class="s4" rel="external nofollow">回 24楼(桃瑞丝) 的帖子</a></p>
<p class="fNum">2013-07-31 16:14 <a href="u.php?username=文文玩摩托" rel="external nofollow">文文玩摩托</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_83">
<th width="60" style="text-align:center;"><a href="http://market.xmfish.com" target="_blank" title="鱼鱼集市" rel="external nofollow"><img alt="鱼鱼集市" src="http://img.xmfish.com/attachment/forumlogo/83.png"></a></th>
<th>
<h2 class="forumT"><a href="http://market.xmfish.com" id="fn_83" target="_blank" class="mr10"><font color=red size=3>鱼鱼集市</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">1472</span>)</span>
<p id="desc_83"><font color=red>实体商家或网店商家免费发布产品和服务信息(实名认证,诚信保障)</font></p>
<p>子版:&nbsp;<a href="thread-htm-fid-101.html">【服饰区】</a><a href="thread-htm-fid-102.html">【居家区】</a><a href="thread-htm-fid-103.html">【亲子区】</a><a href="thread-htm-fid-104.html">【美容美体区】</a><a href="thread-htm-fid-105.html">【食品区】</a><a href="thread-htm-fid-192.html">【婚嫁区】</a><a href="thread-htm-fid-193.html">【数码家电区】</a><a href="thread-htm-fid-108.html">【其他类别】</a></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%BD%F0%D3%E3%C2%FA%CC%C1">金鱼满塘</a> <a rel="external nofollow" href="u.php?username=%D3%E3%C1%FA%CD%F5">鱼龙王</a> <a rel="external nofollow" href="u.php?username=bitfish">bitfish</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>159078</em>/9013211</td>
<td class="re">
<p><a href="read-htm-tid-7544778-page-e.html#a" class="s4" rel="external nofollow">Re:[10-11]满100包邮!黛安 ..</a></p>
<p class="fNum">2013-07-31 16:14 <a href="u.php?username=flowerajun" rel="external nofollow">flowerajun</a></p>
</td>
</tr>
<tr class="tr3 tr3none" id="fid_260">
<th width="60" style="text-align:center;"><a href="http://job.xmfish.com" target="_blank" title="求职招聘" rel="external nofollow"><img alt="求职招聘" src="http://img.xmfish.com/attachment/forumlogo/260.png"></a></th>
<th>
<h2 class="forumT"><a href="http://job.xmfish.com" id="fn_260" target="_blank" class="mr10"><font style="font-size:14px">求职招聘</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">1449</span>)</span>
<p id="desc_260"><font color=#757575>找工作,招人才,要用人,小鱼职场频道给你最大帮助!</font></p>
<p>子版:&nbsp;<a href="thread-htm-fid-319.html">【求职区】</a><a href="thread-htm-fid-320.html">【企业招聘区】</a><a href="thread-htm-fid-49.html">【个人招聘区】</a></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=mslu">mslu</a> <a rel="external nofollow" href="u.php?username=%C9%BD%D3%A5">山鹰</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>538239</em>/4147336</td>
<td class="re">
<p><a href="read-htm-tid-8655279-page-e.html#a" class="s4" rel="external nofollow">Re:急招  业务员</a></p>
<p class="fNum">2013-07-31 16:14 <a href="u.php?username=厦门中佰" rel="external nofollow">厦门中佰</a></p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div  style="width:960px; margin:5px auto 0 auto;">
<script type="text/javascript" src="http://adm.xmfish.com/shw/381.js" charset="utf-8"></script>
</div>
<div id="t_354" class="forum_panel">
<div class="h"><a class="closeicon fr cp"><img id="img_354" alt="展开收起" src="images/wind/index/cate_fold.gif" /></a>
<h3 class="cateT"><a href="index-htm-m-bbs-cateid-354.html" rel="external nofollow">≡服务信息≡</a></h3></div>
<div class="tTable">
<table width="100%" style="table-layout:fixed;">
<tbody id="cate_354" style="display:;">
<tr class="tr3 " id="fid_355">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-355.html" target="_blank" title="教育培训" rel="external nofollow"><img alt="教育培训" src="http://img.xmfish.com/attachment/forumlogo/355.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-355.html" id="fn_355" target="_blank" class="mr10"><font style="font-size:14px">教育培训</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">167</span>)</span>
<p id="desc_355">教育培训类的广告信息免费发布平台</p>
<p>版主:
<a rel="external nofollow" href="u.php?username=bitfish">bitfish</a> <a rel="external nofollow" href="u.php?username=%C9%BD%D3%A5">山鹰</a> <a rel="external nofollow" href="u.php?username=%D3%E3%C1%FA%CD%F5">鱼龙王</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>10134</em>/53801</td>
<td class="re">
<p><a href="read-htm-tid-8302561-page-e.html#a" class="s4" rel="external nofollow">Re:厦门免费培训、室内设计 ..</a></p>
<p class="fNum">2013-07-31 16:13 <a href="u.php?username=想想就开心" rel="external nofollow">想想就开心</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_357">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-357.html" target="_blank" title="商务服务" rel="external nofollow"><img alt="商务服务" src="http://img.xmfish.com/attachment/forumlogo/357.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-357.html" id="fn_357" target="_blank" class="mr10"><font style="font-size:14px">商务服务</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">210</span>)</span>
<p id="desc_357">商务服务类的广告信息免费发布平台</p>
<p>版主:
<a rel="external nofollow" href="u.php?username=bitfish">bitfish</a> <a rel="external nofollow" href="u.php?username=%C9%BD%D3%A5">山鹰</a> <a rel="external nofollow" href="u.php?username=%D3%E3%C1%FA%CD%F5">鱼龙王</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>26514</em>/180717</td>
<td class="re">
<p><a href="read-htm-tid-8626426-page-e.html#a" class="s4" rel="external nofollow">Re:厦门淘宝一对一设计定制 ..</a></p>
<p class="fNum">2013-07-31 16:03 <a href="u.php?username=小而美" rel="external nofollow">小而美</a></p>
</td>
</tr>
<tr class="tr3 tr3none" id="fid_356">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-356.html" target="_blank" title="生活服务" rel="external nofollow"><img alt="生活服务" src="http://img.xmfish.com/attachment/forumlogo/356.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-356.html" id="fn_356" target="_blank" class="mr10"><font style="font-size:14px">生活服务</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">130</span>)</span>
<p id="desc_356">生活服务类的广告信息免费发布平台</p>
<p>版主:
<a rel="external nofollow" href="u.php?username=bitfish">bitfish</a> <a rel="external nofollow" href="u.php?username=%C9%BD%D3%A5">山鹰</a> <a rel="external nofollow" href="u.php?username=%D3%E3%C1%FA%CD%F5">鱼龙王</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>14503</em>/54270</td>
<td class="re">
<p><a href="read-htm-tid-8692529-page-e.html#a" class="s4" rel="external nofollow">Re:急需隔板,需要安装</a></p>
<p class="fNum">2013-07-31 16:13 <a href="u.php?username=紫色星光" rel="external nofollow">紫色星光</a></p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div  style="width:960px; margin:0 auto 0 auto;">
<script type="text/javascript" src="http://adm.xmfish.com/shw/382.js" charset="utf-8"></script>
</div>
<div id="t_58" class="forum_panel">
<div class="h"><a class="closeicon fr cp"><img id="img_58" alt="展开收起" src="images/wind/index/cate_fold.gif" /></a>
<h3 class="cateT"><a href="index-htm-m-bbs-cateid-58.html" rel="external nofollow">≡专业互助≡</a></h3></div>
<div class="tTable">
<table width="100%" style="table-layout:fixed;">
<tbody id="cate_58" style="display:;">
<tr class="tr3 " id="fid_17">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-17.html" target="_blank" title="健康话题" rel="external nofollow"><img alt="健康话题" src="http://img.xmfish.com/attachment/forumlogo/17.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-17.html" id="fn_17" target="_blank" class="mr10"><font style="font-size:14px">健康话题</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">150</span>)</span>
<p id="desc_17"><font color=#757575>生病了当然要上医院看医生,要是不舒服就来这里作咨询吧!</font></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%D0%C2%C3%CE%D0%C7">新梦星</a> <a rel="external nofollow" href="u.php?username=%D0%A1%B1%E0%D9%BB%D9%BB">小编倩倩</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>62332</em>/527038</td>
<td class="re">
<p><a href="read-htm-tid-8704373-page-e.html#a" class="s4" rel="external nofollow">[07-31]【双击健康】NO.3 胸 ..</a></p>
<p class="fNum">2013-07-31 16:12 <a href="u.php?username=最爱孙燕姿" rel="external nofollow">最爱孙燕姿</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_13">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-13.html" target="_blank" title="法在身边" rel="external nofollow"><img alt="法在身边" src="http://img.xmfish.com/attachment/forumlogo/13.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-13.html" id="fn_13" target="_blank" class="mr10"><font style="font-size:14px">法在身边</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">4</span>)</span>
<p id="desc_13"><font color=#757575>法律学习,法律咨询,讲述你我身边发生的法的故事。</font></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=rosky">rosky</a> <a rel="external nofollow" href="u.php?username=%B0%D7%D0%C4">白心</a> <a rel="external nofollow" href="u.php?username=%D0%A1%B1%E0%D9%BB%D9%BB">小编倩倩</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>11865</em>/110931</td>
<td class="re">
<p><a href="read-htm-tid-8704766-page-e.html#a" class="s4" rel="external nofollow">Re:[07-31]【紧急求助】关于 ..</a></p>
<p class="fNum">2013-07-31 12:06 <a href="u.php?username=汀滢糖糖" rel="external nofollow">汀滢糖糖</a></p>
</td>
</tr>
<tr class="tr3 tr3none" id="fid_14">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-14.html" target="_blank" title="上班一族" rel="external nofollow"><img alt="上班一族" src="http://img.xmfish.com/attachment/forumlogo/14.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-14.html" id="fn_14" target="_blank" class="mr10"><font style="font-size:14px">上班一族</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">70</span>)</span>
<p id="desc_14"><font color=#757575>汇集各行各业的人,大家都有自己所擅长的技能和经验!</font></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%B7%E7%CE%E8%BE%C5%CC%EC">风舞九天</a> <a rel="external nofollow" href="u.php?username=%C4%B0%C2%B7%CF%F4%C0%C9">陌路萧郎</a> <a rel="external nofollow" href="u.php?username=%D0%A1%B1%E0%D9%BB%D9%BB">小编倩倩</a>
<table><tbody><tr><td class="b_group"><span class="icon">群组</span></td><td class="bp_list"><a href='apps.php?q=group&cyid=62' target='_blank'>设计师在线</a>&nbsp;<a href='apps.php?q=group&cyid=43' target='_blank'>厦门软二</a>&nbsp;</td></tr></tbody></table>
</p>
</th>
<td class="num tac" style="width:120px;"><em>59838</em>/690338</td>
<td class="re">
<p><a href="read-htm-tid-8706495-page-e.html#a" class="s4" rel="external nofollow">[07-31]纠结中,该不该离开  ..</a></p>
<p class="fNum">2013-07-31 16:11 <a href="u.php?username=独享的幸福" rel="external nofollow">独享的幸福</a></p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div  style="width:960px; margin:5px auto 0 auto;">
<script type="text/javascript" src="http://adm.xmfish.com/shw/383.js" charset="utf-8"></script>
</div>
<div id="t_4" class="forum_panel">
<div class="h"><a class="closeicon fr cp"><img id="img_4" alt="展开收起" src="images/wind/index/cate_fold.gif" /></a>
<h3 class="cateT"><a href="index-htm-m-bbs-cateid-4.html" rel="external nofollow">≡娱乐爱好≡</a></h3></div>
<div class="tTable">
<table width="100%" style="table-layout:fixed;">
<tbody id="cate_4" style="display:;">
<tr class="tr3 " id="fid_51">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-51.html" target="_blank" title="鱼游天下" rel="external nofollow"><img alt="鱼游天下" src="http://img.xmfish.com/attachment/forumlogo/51.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-51.html" id="fn_51" target="_blank" class="mr10"><font style="font-size:14px">鱼游天下</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">143</span>)</span>
<p id="desc_51"><font color=#757575>放下生活包袱,背起快乐行囊,一起游山玩水,畅游天下</font></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%B2%BC%C2%B3">布鲁</a> <a rel="external nofollow" href="u.php?username=%C1%A6%B7%F2">力夫</a> <a rel="external nofollow" href="u.php?username=%CD%F2%CE%EF%DC%F6%B4%E4">万物荟翠</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>39108</em>/697933</td>
<td class="re">
<p><a href="read-htm-tid-8704762-page-e.html#a" class="s4" rel="external nofollow">Re:[07-31][行色和人文] 我 ..</a></p>
<p class="fNum">2013-07-31 16:12 <a href="u.php?username=初日照梧桐" rel="external nofollow">初日照梧桐</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_11">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-11.html" target="_blank" title="影音基地" rel="external nofollow"><img alt="影音基地" src="http://img.xmfish.com/attachment/forumlogo/11.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-11.html" id="fn_11" target="_blank" class="mr10"><font style="font-size:14px">影音基地</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">14</span>)</span>
<p id="desc_11"><font color=#757575>推荐、分享和评论影视和优美歌曲,以及有趣的综艺资讯</font></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%B9%FB%B6%B3">果冻</a> <a rel="external nofollow" href="u.php?username=%D0%C7%D0%C7GG">星星GG</a> <a rel="external nofollow" href="u.php?username=%D0%A1%B1%E0%B2%CB%B2%CB">小编菜菜</a>
<table><tbody><tr><td class="b_group"><span class="icon">群组</span></td><td class="bp_list"><a href='apps.php?q=group&cyid=47' target='_blank'>小鱼观影团</a>&nbsp;</td></tr></tbody></table>
</p>
</th>
<td class="num tac" style="width:120px;"><em>35621</em>/424808</td>
<td class="re">
<p><a href="read-htm-tid-8696831-page-e.html#a" class="s4" rel="external nofollow">Re:《【小鱼观影团NO.19】马 ..</a></p>
<p class="fNum">2013-07-31 15:54 <a href="u.php?username=土龙" rel="external nofollow">土龙</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_25">
<th width="60" style="text-align:center;"><a href="http://bbs.xmfish.com/group.php?q=all&styleid=25" target="_blank" title="城市运动" rel="external nofollow"><img alt="城市运动" src="http://img.xmfish.com/attachment/forumlogo/25.png"></a></th>
<th>
<h2 class="forumT"><a href="http://bbs.xmfish.com/group.php?q=all&styleid=25" id="fn_25" target="_blank" class="mr10"><font style="font-size:14px">城市运动</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">25</span>)</span>
<p id="desc_25"><font color=#757575>登山、网球、台球、游泳、山地车等各类城市运动……</font></p>
<p>子版:&nbsp;<a href="thread-htm-fid-134.html"><font style="font-size:14px;color:red;">厦门马拉松</font></a></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%C0%ED%CF%EB%B5%C4%C6%F0%B5%E3">理想的起点</a> <a rel="external nofollow" href="u.php?username=%E0%DE%DD%A4%DE%CE">噢荬尬</a> <a rel="external nofollow" href="u.php?username=%B0%CB%B6%B9%D1%FC">八豆腰</a> <a rel="external nofollow" href="u.php?username=%CB%BC%C4%EE%B5%C4%C1%F7%C0%CB%B9%B7">思念的流浪狗</a> <a rel="external nofollow" href="u.php?username=%BA%A3%CC%B2">海滩</a> <a rel="external nofollow" href="u.php?username=%D0%A1%B1%E0%B2%CB%B2%CB">小编菜菜</a>
<table><tbody><tr><td class="b_group"><span class="icon">群组</span></td><td class="bp_list"><a href='apps.php?q=group&cyid=55' target='_blank'>篮球周末</a>&nbsp;<a href='apps.php?q=group&cyid=56' target='_blank'>乒乓一族</a>&nbsp;<a href='apps.php?q=group&cyid=57' target='_blank'>羽球之家</a>&nbsp;<a href='apps.php?q=group&cyid=58' target='_blank'>足球雄起</a>&nbsp;<a href='apps.php?q=group&cyid=59' target='_blank'>约跑族</a>&nbsp;<a href='apps.php?q=group&cyid=61' target='_blank'>户外行</a>&nbsp;<a href='apps.php?q=group&cyid=49' target='_blank'>游泳俱乐部</a>&nbsp;<a href='apps.php?q=group&cyid=50' target='_blank'>小鱼骑士团</a>&nbsp;</td></tr></tbody></table>
</p>
</th>
<td class="num tac" style="width:120px;"><em>64223</em>/833503</td>
<td class="re">
<p><a href="read-htm-tid-7041665-page-e.html#a" class="s4" rel="external nofollow">Re:[05-23]跪求厦门工体游泳 ..</a></p>
<p class="fNum">2013-07-31 15:19 <a href="u.php?username=banker" rel="external nofollow">banker</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_71">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-71.html" target="_blank" title="读书时间" rel="external nofollow"><img alt="读书时间" src="http://img.xmfish.com/attachment/forumlogo/71.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-71.html" id="fn_71" target="_blank" class="mr10"><font style="font-size:14px">读书时间</font></a></h2>
<p id="desc_71"><font color=#757575>读书,思考,讨论;思想在这里碰撞,文字在这里飞扬!</font></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%C4%A6%C2%DE">摩罗</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>17954</em>/221489</td>
<td class="re">
<p><a href="read-htm-tid-8574322-page-e.html#a" class="s4" rel="external nofollow">厦门英语</a></p>
<p class="fNum">2013-07-30 22:38 <a href="u.php?username=带银公主英" rel="external nofollow">带银公主英</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_69">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-69.html" target="_blank" title="舞者沙龙" rel="external nofollow"><img alt="舞者沙龙" src="http://img.xmfish.com/attachment/forumlogo/69.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-69.html" id="fn_69" target="_blank" class="mr10"><font style="font-size:14px">舞者沙龙</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">218</span>)</span>
<p id="desc_69"><font color=#757575>大家一起来跳舞,一起来健康,一起来happy!</font></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%C9%C6%CE%E8">善舞</a> <a rel="external nofollow" href="u.php?username=%D1%F4%B9%E2%B7%C9%CE%E8">阳光飞舞</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>13314</em>/373695</td>
<td class="re">
<p><a href="read-htm-tid-8622611-page-e.html#a" class="s4" rel="external nofollow">Re:[07-15]诚邀7月27日舞者 ..</a></p>
<p class="fNum">2013-07-31 16:14 <a href="u.php?username=医邪渐忘红尘" rel="external nofollow">医邪渐忘红尘</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_81">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-81.html" target="_blank" title="宠物天地" rel="external nofollow"><img alt="宠物天地" src="http://img.xmfish.com/attachment/forumlogo/81.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-81.html" id="fn_81" target="_blank" class="mr10"><font style="font-size:14px">宠物天地</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">187</span>)</span>
<p id="desc_81"><font color=#757575>喜欢小动物们的YUYU进来交流吧</font></p>
<p>子版:&nbsp;<a href="thread-htm-fid-120.html">『水族世界』</a><a href="thread-htm-fid-144.html">『良龟益友』</a><a href="thread-htm-fid-121.html">『宠物领养』</a><a href="thread-htm-fid-344.html"><font color=red><b>『宠物交易』</b></font></a></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=kindpop">kindpop</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>99579</em>/1920217</td>
<td class="re">
<p><a href="read-htm-tid-8706510-page-e.html#a" class="s4" rel="external nofollow">[07-31]求购龙鱼苗一只,大  ..</a></p>
<p class="fNum">2013-07-31 16:13 <a href="u.php?username=ookenjioo" rel="external nofollow">ookenjioo</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_366">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-366.html" target="_blank" title="花言草语" rel="external nofollow"><img alt="花言草语" src="http://img.xmfish.com/attachment/forumlogo/366.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-366.html" id="fn_366" target="_blank" class="mr10"><font style="font-size:14px">花言草语</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">20</span>)</span>
<p id="desc_366"><font color=#757575>一花一草一世界,一沙一石一天堂,与植物对话,享受生活!</font></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=jelic">jelic</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>1555</em>/27944</td>
<td class="re">
<p><a href="read-htm-tid-8636735-page-e.html#a" class="s4" rel="external nofollow">Re:[07-18]风雨中绽放的雨百 ..</a></p>
<p class="fNum">2013-07-31 15:59 <a href="u.php?username=夏天的猪" rel="external nofollow">夏天的猪</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_16">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-16.html" target="_blank" title="摄影世界" rel="external nofollow"><img alt="摄影世界" src="http://img.xmfish.com/attachment/forumlogo/16.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-16.html" id="fn_16" target="_blank" class="mr10"><font style="font-size:14px">摄影世界</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">21</span>)</span>
<p id="desc_16">交流数码拍摄的地方,一起分享好PP,一同提高摄影技术!</p>
<p>版主:
<a rel="external nofollow" href="u.php?username=Aleex">Aleex</a> <a rel="external nofollow" href="u.php?username=%B5%B6%B0%CC%D0%A1%B0%D7">刀疤小白</a>
<table><tbody><tr><td class="b_group"><span class="icon">群组</span></td><td class="bp_list"><a href='apps.php?q=group&cyid=60' target='_blank'>小鱼摄影团</a>&nbsp;</td></tr></tbody></table>
</p>
</th>
<td class="num tac" style="width:120px;"><em>11227</em>/127751</td>
<td class="re">
<p><a href="read-htm-tid-8669983-page-e.html#a" class="s4" rel="external nofollow">Re:[07-24]给你一片海。</a></p>
<p class="fNum">2013-07-31 16:11 <a href="u.php?username=好多鱼啊啊啊啊" rel="external nofollow">好多鱼啊啊啊啊</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_26">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-26.html" target="_blank" title="3C数码 " rel="external nofollow"><img alt="3C数码 " src="http://img.xmfish.com/attachment/forumlogo/26.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-26.html" id="fn_26" target="_blank" class="mr10"><font style="font-size:14px">3C数码 </font></a></h2>
<span class="s2 mr10">(今日<span class="f10">263</span>)</span>
<p id="desc_26"><font color=#757575>交流最新最HOT的数码电子产品和手机时尚 !</font></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%D0%A1%B0%CD%B6%B9">小巴豆</a> <a rel="external nofollow" href="u.php?username=martinzh">martinzh</a> <a rel="external nofollow" href="u.php?username=%BE%F6%BE%F8">决绝</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>117312</em>/999630</td>
<td class="re">
<p><a href="read-htm-tid-8704448-page-e.html#a" class="s4" rel="external nofollow">Re:[07-31]搞了一天终于把美 ..</a></p>
<p class="fNum">2013-07-31 15:49 <a href="u.php?username=arfield" rel="external nofollow">arfield</a></p>
</td>
</tr>
<tr class="tr3 tr3none" id="fid_36">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-36.html" target="_blank" title="游戏玩家" rel="external nofollow"><img alt="游戏玩家" src="http://img.xmfish.com/attachment/forumlogo/36.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-36.html" id="fn_36" target="_blank" class="mr10"><font style="font-size:14px">游戏玩家</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">9</span>)</span>
<p id="desc_36"><font color=#757575>I LOVE THIS GAME~!放松你的身心,进入精彩的电玩世界!</font></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%BE%F6%BE%F8">决绝</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>17263</em>/179693</td>
<td class="re">
<p><a href="read-htm-tid-8704872-page-e.html#a" class="s4" rel="external nofollow">[07-31]第一次上手《燕赵风  ..</a></p>
<p class="fNum">2013-07-31 11:07 <a href="u.php?username=tandren" rel="external nofollow">tandren</a></p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div  style="width:960px; margin:0 auto 0 auto;">
<script type="text/javascript" src="http://adm.xmfish.com/shw/541.js" charset="utf-8"></script>
</div>
<div id="t_155" class="forum_panel">
<div class="h"><a class="closeicon fr cp"><img id="img_155" alt="展开收起" src="images/wind/index/cate_fold.gif" /></a>
<h3 class="cateT"><a href="index-htm-m-bbs-cateid-155.html" rel="external nofollow">≡会员天地≡</a></h3></div>
<div class="tTable">
<table width="100%" style="table-layout:fixed;">
<tbody id="cate_155" style="display:;">
<tr class="tr3 " id="fid_113">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-113.html" target="_blank" title="新鱼上路" rel="external nofollow"><img alt="新鱼上路" src="http://img.xmfish.com/attachment/forumlogo/113.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-113.html" id="fn_113" target="_blank" class="mr10"><font style="font-size:14px;color:red;">新鱼上路</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">6886</span>)</span>
<p id="desc_113">欢迎新鱼们加入,请统一到本版报道,并尽快熟悉社区规则和功能!</p>
<p>子版:&nbsp;<a href="thread-htm-fid-435.html">鱼鱼签到</a></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=%D0%A1%D3%E3%BF%CD%B7%FE%DC%B7%DC%B7">小鱼客服芊芊</a> <a rel="external nofollow" href="u.php?username=%B4%F3%B3%B5%C2%D6">大车轮</a> <a rel="external nofollow" href="u.php?username=%B3%AF%D1%F4%C8%F0">朝阳瑞</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>247762</em>/856317</td>
<td class="re">
<p><a href="read-htm-tid-8703488-page-e.html#a" class="s4" rel="external nofollow">Re:[07-31]每日心情签到</a></p>
<p class="fNum">2013-07-31 16:14 <a href="u.php?username=幕夕" rel="external nofollow">幕夕</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_139">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-139.html" target="_blank" title="老鱼之家" rel="external nofollow"><img alt="老鱼之家" src="http://img.xmfish.com/attachment/forumlogo/139.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-139.html" id="fn_139" target="_blank" class="mr10"><font style="font-size:14px">老鱼之家</font></a></h2>
<p id="desc_139"><font color=blue>老鱼专版,目前只限早期注册UID20000以内的“资深老鱼”能够访问<font></p>
</p>
</th>
<td class="num tac" style="width:120px;"><em>2114</em>/11784</td>
<td class="re">
<p><a href="read-htm-tid-8672696-page-e.html#a" class="s4" rel="external nofollow">Re:[07-25]十周年啦!</a></p>
<p class="fNum">2013-07-29 16:21 <a href="u.php?username=源动力" rel="external nofollow">源动力</a></p>
</td>
</tr>
<tr class="tr3 tr3none" id="fid_152">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-152.html" target="_blank" title="小鱼志愿者" rel="external nofollow"><img alt="小鱼志愿者" src="http://img.xmfish.com/attachment/forumlogo/152.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-152.html" id="fn_152" target="_blank" class="mr10"><font style="font-size:14px;color:green;">小鱼志愿者</font></a></h2>
<p id="desc_152"><font color=#757575>小鱼志愿者活动及日常交流使用专版</font></p>
<p>版主:
<a rel="external nofollow" href="u.php?username=onlife">onlife</a> <a rel="external nofollow" href="u.php?username=%C9%B5%B9%CF%B0%A2%B9%F3">傻瓜阿贵</a> <a rel="external nofollow" href="u.php?username=%C7%B3%C7%B3%D0%A1%D3%E3">浅浅小鱼</a>
</p>
</th>
<td class="num tac" style="width:120px;"><em>983</em>/33015</td>
<td class="re">
<p><a href="read-htm-tid-2093822-page-e.html#a" class="s4" rel="external nofollow">Re:[12-03] 做志愿者,你最 ..</a></p>
<p class="fNum">2013-07-30 21:56 <a href="u.php?username=结婚的男人" rel="external nofollow">结婚的男人</a></p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="t_2" class="forum_panel">
<div class="h"><a class="closeicon fr cp"><img id="img_2" alt="展开收起" src="images/wind/index/cate_fold.gif" /></a>
<h3 class="cateT"><a href="index-htm-m-bbs-cateid-2.html" rel="external nofollow">≡社区管理≡</a></h3></div>
<div class="tTable">
<table width="100%" style="table-layout:fixed;">
<tbody id="cate_2" style="display:;">
<tr class="tr3 " id="fid_39">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-39.html" target="_blank" title="疑问建议" rel="external nofollow"><img alt="疑问建议" src="http://img.xmfish.com/attachment/forumlogo/39.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-39.html" id="fn_39" target="_blank" class="mr10"><font style="font-size:14px">疑问建议</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">38</span>)</span>
<p id="desc_39"><font color=blue>对社区有什么疑问或者是建议请一律发到这里!</font></p>
<p>子版:&nbsp;<a href="thread-htm-fid-52.html">『 社区档案 』</a></p>
</p>
</th>
<td class="num tac" style="width:120px;"><em>29602</em>/253929</td>
<td class="re">
<p><a href="read-htm-tid-7239146-page-e.html#a" class="s4" rel="external nofollow">Re:最新小鱼币的获取渠道及 ..</a></p>
<p class="fNum">2013-07-31 16:13 <a href="u.php?username=诺可" rel="external nofollow">诺可</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_116">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-116.html" target="_blank" title="版主申请" rel="external nofollow"><img alt="版主申请" src="http://img.xmfish.com/attachment/forumlogo/116.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-116.html" id="fn_116" target="_blank" class="mr10"><font style="font-size:14px">版主申请</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">3</span>)</span>
<p id="desc_116">阅读版主申请规定后,在本版按格式发贴申请并公示</p>
<p>子版:&nbsp;<a href="thread-htm-fid-117.html">【版主任免】</a></p>
</p>
</th>
<td class="num tac" style="width:120px;"><em>624</em>/6054</td>
<td class="re">
<p><a href="read-htm-tid-8705117-page-e.html#a" class="s4" rel="external nofollow">[07-31]鱼鱼游</a></p>
<p class="fNum">2013-07-31 11:41 <a href="u.php?username=zjufen" rel="external nofollow">zjufen</a></p>
</td>
</tr>
<tr class="tr3 " id="fid_44">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-44.html" target="_blank" title="不良记录" rel="external nofollow"><img alt="不良记录" src="http://img.xmfish.com/attachment/forumlogo/44.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-44.html" id="fn_44" target="_blank" class="mr10"><font style="font-size:14px">不良记录</font></a></h2>
<span class="s2 mr10">(今日<span class="f10">97</span>)</span>
<p id="desc_44">违反社区规定所处理的会员记录。</p>
<p>子版:&nbsp;<a href="thread-htm-fid-115.html">【小黑屋】</a></p>
</p>
</th>
<td class="num tac" style="width:120px;"><em>92877</em>/122642</td>
<td class="re">
<p><a href="read-htm-tid-8706123-page-e.html#a" class="s4" rel="external nofollow">【全站永久禁言】 ID: 万顺  ..</a></p>
<p class="fNum">2013-07-31 15:06 <a href="u.php?username=兔子爱美丽" rel="external nofollow">兔子爱美丽</a></p>
</td>
</tr>
<tr class="tr3 tr3none" id="fid_12">
<th width="60" style="text-align:center;"><a href="thread-htm-fid-12.html" target="_blank" title="【旧帖回收】" rel="external nofollow"><img alt="【旧帖回收】" src="http://img.xmfish.com/attachment/forumlogo/12.png"></a></th>
<th>
<h2 class="forumT"><a href="thread-htm-fid-12.html" id="fn_12" target="_blank" class="mr10">【旧帖回收】</a></h2>
<span class="s2 mr10">(今日<span class="f10">107</span>)</span>
<p id="desc_12">过时无效的帖子都可以转移到此,不定时删除。</p>
</p>
</th>
<td class="num tac" style="width:120px;"><em>830325</em>/6424416</td>
<td class="re">
<div style="line-height:3;">认证版块</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<script language="JavaScript" src="js/Deploy.js"></script>
<div class="forum_panel">
<div class="h">
<strong>友情链接</strong></div>
<div class="tTable" style="padding-left:8px;"><table cellspacing="0" cellpadding="0" width="100%" style="table-layout:fixed;">
<tr>
<td><dl class="sharelink cc"><dt class="fr mr10"><a href="http://www.jjj8.cn" rel="external nofollow"><img src="http://img.xmfish.com/attachment/Mon_1208/114_8_dae554cdddf294a.gif" width="88" height="31" alt="晋江便民网" /></a></dt><dd><p><a href="http://www.jjj8.cn" target="_blank">晋江便民网</a></p>晋江影响力和人气最高的生活社区网站</dd></dl></td>
</tr>
<tr>
<td><dl class="sharelink cc"><dt class="fr mr10"><a href="http://www.qzbbs.com/" rel="external nofollow"><img src="http://www.xmfish.com/images/chanel/www/l_qz_logo.gif" width="88" height="31" alt="泉州论坛" /></a></dt><dd><p><a href="http://www.qzbbs.com/" target="_blank">泉州论坛</a></p>泉州影响力和人气最高的生活社区网站</dd></dl></td>
</tr>
<tr>
<td><dl class="sharelink cc"><dt class="fr mr10"><a href="http://www.zzfish.cn/" rel="external nofollow"><img src="http://img.xmfish.com/attachment/Mon_1008/161_469294_b156f180c101251.gif" width="88" height="31" alt="漳州小鱼网" /></a></dt><dd><p><a href="http://www.zzfish.cn/" target="_blank">漳州小鱼网</a></p>漳州影响力和人气最高的生活社区网站</dd></dl></td>
</tr>
<tr>
<td><div class="sharelink2 cc"><a href="http://cms.xmfish.com/auto/read.html?url=http%3a%2f%2f222.76.243.13%3a90%2f" target="_blank"><img src="http://img.xmfish.com/attachment/Mon_1010/68_1376_82a199100846d9d.gif" alt="" width="88" height="31"></a><a href="http://www.xmfish.com" target="_blank"><img src="/images/atm/1105/xmfish.com_logo.gif" alt="" width="88" height="31"></a><a href="http://www.xmdtkq.com/" target="_blank"><img src="http://img.xmfish.com/attachment/Mon_1107/114_1376_3757fc65bde8098.gif" alt="" width="88" height="31"></a><a href="http://www.5368111.com/" target="_blank"><img src="http://img.xmfish.com/attachment/Mon_1202/114_1376_dd9122034449d85.gif" alt="" width="88" height="31"></a><a href="http://xm.137home.com" target="_blank"><img src="http://img.xmfish.com/attachment/Mon_1204/114_1376_385e373faac7ebe.gif" alt="" width="88" height="31"></a><a href="http://bbs.hdmnw.com" target="_blank"><img src="http://img.xmfish.com/attachment/Mon_1209/106_8_422978a0b6f9dee.jpg" alt="" width="88" height="31"></a><a href="http://www.ctw.cn/" target="_blank"><img src="http://img.xmfish.com/attachment/logo/ctlogo.gif" alt="" width="88" height="31"></a><a href="http://www.bj592.com" target="_blank"><img src="http://img.xmfish.com/attachment/Mon_1210/114_66814_434f58cac785ac6.jpg" alt="厦门旅游婚纱铂爵婚纱" width="88" height="31"></a><a href="http://www.xmzays.com" target="_blank"><img src="http://img.xmfish.com/attachment/logo/logo_zays.gif" alt="厦门婚纱摄影钟爱一生" width="88" height="31"></a><a href="http://www.xmgwbn.com/" target="_blank"><img src="http://img.xmfish.com/attachment/logo/logo_xmgwcb.gif" alt="" width="88" height="31"></a><a href="http://www.703804.com" target="_blank"><img src="images/atm/1005/703804logo.gif" alt="" width="88" height="31"></a><div class="c"></div><a href="http://bbs.eelly.com" target="_blank" title="服装论坛 ">服装论坛</a><a href="http://www.haianw.com" target="_blank" title="海安网 海安网">海安网</a><a href="http://www.aixiaoju.com" target="_blank" title="孝感网 孝感网">孝感网</a><a href="http://bbs.ibaodi.com" target="_blank" title="宝坻论坛 宝坻论坛">宝坻论坛</a><a href="http://www.qingzhoubbs.cn/" target="_blank" title="青州论坛 青州论坛">青州论坛</a><a href="http://bbs.poco.cn/" target="_blank" title="OCO论坛 ">OCO论坛</a><a href="http://xiamen.baixing.com/" target="_blank" title="厦门百姓网 ">厦门百姓网</a><a href="http://bbs.ts.cn/" target="_blank" title="天山论坛 ">天山论坛</a><a href="http://www.phpwind.net/" target="_blank" title="phpwind ">phpwind</a><a href="http://www.020.com" target="_blank" title="广州网 ">广州网</a><a href="http://bbs.iqilu.com/" target="_blank" title="齐鲁社区 ">齐鲁社区</a><a href="http://www.zh28.com/" target="_blank" title="全众社区网 ">全众社区网</a><a href="http://www.shaxianxia.com" target="_blank" title="沙县虾网 沙县虾网">沙县虾网</a><a href="http://bbs.bingchengwang.com/" target="_blank" title="哈尔滨论坛 哈尔滨论坛">哈尔滨论坛</a><a href="http://www.qdqss.cn/" target="_blank" title="青岛新闻网 ">青岛新闻网</a><a href="http://www.mandeman.com/" target="_blank" title="曼德曼男士网 ">曼德曼男士网</a><a href="http://bbs.gdzijin.com/" target="_blank" title="紫金论坛 ">紫金论坛</a><a href="http://bbs.cnhan.com" target="_blank" title="武汉汉网社区 ">武汉汉网社区</a><a href="http://bbs.cnhubei.com" target="_blank" title="东湖社区 ">东湖社区</a><a href="http://www.deerscity.com" target="_blank" title="温州大学论坛 ">温州大学论坛</a><a href="http://www.linyiren.com" target="_blank" title="临沂人网 临沂人网">临沂人网</a><a href="http://www.baishuiapple.com" target="_blank" title="白水论坛 白水论坛">白水论坛</a><a href="http://www.wanlifeng.com" target="_blank" title="宁波论坛 宁波论坛">宁波论坛</a><a href="http://www.pzzc.net" target="_blank" title="邳州论坛 邳州论坛">邳州论坛</a><a href="http://bbs.hefei.cc" target="_blank" title="合肥论坛 合肥论坛">合肥论坛</a><a href="http://bbs.taian.com" target="_blank" title="泰安论坛 泰安论坛">泰安论坛</a><a href="http://www.yiqin.com/" target="_blank" title="忆亲网 ">忆亲网</a><a href="http://bbs.zzfish.cn/" target="_blank" title="漳州小鱼社区 漳州影响力和人气最高的生活社区网站">漳州小鱼社区</a><a href="http://www.xialv.com" target="_blank" title="侠侣点评网 ">侠侣点评网</a><a href="http://bbs.o.cn/" target="_blank" title="广州论坛 ">广州论坛</a><a href="http://cunwu.cuncun8.com/" target="_blank" title="村务公开网 ">村务公开网</a><a href="http://bbs.nantaihu.com/" target="_blank" title="南太湖论坛 ">南太湖论坛</a><a href="http://www.97ls.com" target="_blank" title="陇上网 ">陇上网</a><a href="http://www.jsly001.com" target="_blank" title="溧阳论坛 ">溧阳论坛</a><a href="http://www.bizcn.com" target="_blank" title="虚拟主机 ">虚拟主机</a><a href="http://www.changting.net" target="_blank" title="长汀在线 ">长汀在线</a><a href="http://bbs.hsw.cn" target="_blank" title="华商论坛 ">华商论坛</a><a href="http://bbs.0579.cn" target="_blank" title="大金华论坛 ">大金华论坛</a><a href="http://www.bizcn.com" target="_blank" title="域名注册 ">域名注册</a><a href="http://0592.059rc.com/" target="_blank" title="精才网 ">精才网</a><a href="http://www.citsxm.com" target="_blank" title="厦门中国旅行社 ">厦门中国旅行社</a><a href="http://www.fbfb.cn/" target="_blank" title="欢乐车友会 ">欢乐车友会</a><a href="http://www.raoke.net" target="_blank" title="饶客网 ">饶客网</a><a href="http://www.438938.com/" target="_blank" title="938厦门汽车俱乐部 ">938厦门汽车俱乐部</a><a href="http://majiapu.soufun.com/" target="_blank" title="马家堡社区网 ">马家堡社区网</a><a href="http://bbs.kshot.com/" target="_blank" title="昆山论坛 ">昆山论坛</a><a href="http://www.postwhy.com" target="_blank" title="邮编查询 ">邮编查询</a><a href="http://www.zzbbs.com" target="_blank" title="郑州论坛 ">郑州论坛</a><a href="http://bbs.212300.com" target="_blank" title="丹阳翼网 ">丹阳翼网</a><a href="http://xm.city.ifeng.com/" target="_blank" title="凤凰网 ">凤凰网</a><a href="http://bbs.bianzhirensheng.com/" target="_blank" title="编织人生论坛 ">编织人生论坛</a><a href="http://www.xmfish.com/chanel/other/inlink.html" target="_blank" title="-查看更多友情链接- ">-查看更多友情链接-</a></div></td>
</tr>
</table></div>
<div class="h">在线用户<a name="online"></a> -  共 12071 人在线,5722 位会员,6349 位访客,最多 53158 人发生在 2012-11-07 12:45 </div>
<div class="tTable" style="padding:8px;"><table cellspacing="0" cellpadding="0" width="100%" style="table-layout:fixed;">
<tr>
<td>
<span class="w mr10"><img src="images/wind/group/3.gif" align="absmiddle" alt="管理员" /> 管理员</span>
<span class="w mr10"><img src="images/wind/group/4.gif" align="absmiddle" alt="超级版主" /> 超级版主</span>
<span class="w mr10"><img src="images/wind/group/5.gif" align="absmiddle" alt="版主" /> 版主</span>
<span class="w mr10"><img src="images/wind/group/16.gif" align="absmiddle" alt="白金小鱼" /> 白金小鱼</span>
<span class="w mr10"><img src="images/wind/group/6.gif" align="absmiddle" alt="普通会员" /> 普通会员</span>
</td>
</tr>
</table>
</div>
</div>
</div>
<!-- 对联跟随广告 end -->
<script type="text/javascript" src="http://adm.xmfish.com/shw/325.js" charset="utf-8"></script>
</div></div><!--.main-wrap,#main End-->
<div  style="width:960px; margin:0px auto 5px auto;">
<script type="text/javascript" src="http://adm.xmfish.com/shw/11.js" charset="utf-8"></script>
</div>
<style>
.footer {background: #FCFCFC;border: #E1E1E1 solid 1px;width: 958px;margin: 10px auto}
.f_bor {margin-top: 20px;height: 60px}
.f_bor ul {list-style-type: none;margin: 0px;padding: 0px}
.f_bor li {float: left;margin-left: 38px;padding-right: 38px;border-right: #D2D2D2 solid 1px;width: 160px;display: inline}
.f_im {float: left;}
.f_lin {float: right;width: 80px;}
.f_lin span {display: block}
.f_lin span a {color: #666666;line-height: 19px;}
.f_bor1 {margin: 10px auto;height: 45px;position: relative}
.f_logo {float: left;margin-left: 20px;display: inline;}
.copyright {width: 530px;float: left;color: #999999}
.copyright a {color: #999999}
.f_search {text-align: center;}
.sea_1 {border: #B3B3B3 solid 1px;width: 120px;height: 14px;text-align: left}
.f_right {float: right;margin-right: 80px;display: inline}
.pos {background: none repeat scroll 0 0 #F5F5F5;border: 1px solid #DAD9D9;margin: 10px auto;padding: 3px 15px;}
</style>
<div class="footer">
<div class="f_bor">
<ul>
<li>
<div class="f_im"><img alt="关爱互助"
src="http://www.xmfish.com/images/chanel/www/f_1.gif"></div>
<div class="f_lin"><span><a href="http://life.xmfish.com/"
target="_blank" style="font-weight: bold; color: #FB8F03" rel="external nofollow">鹭岛民声</a></span>
<span><a target="_blank"
href="http://bbs.xmfish.com/thread-htm-fid-158.html" rel="external nofollow">小鱼希望小学</a></span>
<span><a target="_blank"
href="http://bbs.xmfish.com/thread-htm-fid-152.html" rel="external nofollow">小鱼志愿者</a></span></div>
</li>
<li>
<div class="f_im"><img width="72" height="60" alt="分享交流"
src="http://www.xmfish.com/images/chanel/www/f_2.gif"></div>
<div class="f_lin"><span><a target="_blank"
href="http://bbs.xmfish.com/thread-htm-fid-6.html" rel="external nofollow">鹭岛民生</a></span> <span><a
target="_blank" href="http://bbs.xmfish.com/thread-htm-fid-55.html" rel="external nofollow">物尽其用</a></span>
<span><a target="_blank"
href="http://bbs.xmfish.com/thread-htm-fid-27.html" rel="external nofollow">谈天说地</a></span></div>
</li>
<li>
<div class="f_im"><img width="72" height="60" alt="关于我们"
src="http://www.xmfish.com/images/chanel/www/f_3.gif"></div>
<div class="f_lin"><span><a target="_blank"
href="http://special.xmfish.com/help/service.html" rel="external nofollow">商务合作</a></span> <span><a
target="_blank" href="http://special.xmfish.com/help/job.html" rel="external nofollow">诚聘英才</a></span>
<span><a target="_blank" href="http://www.xmfish.com/help/map.html">网站地图</a></span></div>
</li>
<li style="border-right:none">
<div class="f_im"><img width="72" height="60" alt="关注我们"
src="http://www.xmfish.com/images/chanel/www/f_4.gif"></div>
<div class="f_lin">
<span><a target="_blank" href="http://special.xmfish.com/help/index.html" rel="external nofollow">关于我们</a></span>
<span><a target="_blank" href="http://special.xmfish.com/help/contact.html" rel="external nofollow">联系我们</a></span>
<span><a target="_blank" href="http://www.zzfish.cn" rel="external nofollow">漳州小鱼</a></span>
</div>
</li>
</ul>
</div>
<div class="f_bor1">
<div class="f_logo"><a href="http://www.xmfish.com/" target="_blank" rel="external nofollow"><img
alt="厦门小鱼网" src="http://www.xmfish.com/images/chanel/www/f_logo.gif" border="0"></a></div>
<div class="copyright">
<form target="_blank" action="http://bbs.xmfish.com/searcher.php"
method="get" id="srchfoot" accept-charset="gbk" target="_blank"
onsubmit="if(!!window.ActiveXObject){document.charset='gbk';}"><input
type="hidden" value="thread" name="type">
<div class="f_search"><input
type="text" class="sea_1" name="keyword">&nbsp;<img align="absmiddle"
onclick="document.getElementById('srchfoot').submit();" style="cursor: pointer;" src="http://www.xmfish.com/images/chanel/www/sea_btn.gif">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a
target="_blank" href="http://special.xmfish.com/help/law.html" rel="external nofollow">法律声明</a></div>
<div style="text-align: center; line-height: 22px; color: #999999">&copy;2003-2012
<a href="http://www.xmfish.com/" rel="external nofollow">小鱼网</a> 版权所有,并保留所有权利。<a target="_blank"
href="http://www.miibeian.gov.cn/" rel="external nofollow">闽ICP备05000086号</a> <a
target="_blank" href="http://special.xmfish.com/help/icp.html" rel="external nofollow">闽B2-20040214</a></div>
</form>
</div>
<div class="f_right"><a target="_blank"
href="http://www.xmfish.com/auto/read.html?url=http%3A%2F%2Fxmcyberpolice.cn%2Findex.asp" rel="external nofollow"><img
src="http://www.xmfish.com/images/chanel/www/netplice.gif" border="0"></a></div>
<div><a target="_self" href="#"><img border="0"
src="http://www.xmfish.com/images/chanel/www/top.gif"></a></div>
</div>
<div style="height:3px"></div>

<style>
/* Shortcut */
.shortcut_panel {width:20px;}
.s_menu { border-top:#0393dc 3px solid;}
.s_menu p { display:inline-block; width:20px; margin:0; padding:0; filter:alpha(opacity=70); -moz-opacity:0.70;opacity:0.70; background-color:#f8f8f8;}
.s_menu:hover p { -moz-opacity:1;opacity:1; filter:none;}
.s_menu p a { display:block; padding:5px 0; border:#e7e7e7 1px solid; border-top:none; text-decoration:none; text-align:center; color:#333 !important;}
.s_menu p a:hover{ border:#0da3ef 1px solid; border-top:none; text-decoration:none; color:#fff !important;}
.s_menu p a.feedback {line-height:16px;}
.s_menu p a.feedback:hover { background:#0da3ef;}
</style>


</div>
<!--tao dian jin-->
<script type="text/javascript">
(function(win,doc){
var s = doc.createElement("script"), h = doc.getElementsByTagName("head")[0];
if (!win.alimamatk_show) {
s.charset = "gbk";
s.async = true;
s.src = "http://a.alimama.cn/tkapi.js";
h.insertBefore(s, h.firstChild);
}
var o = {
pid: "mm_16735675_2254327_11250124",
appkey: "",
unid: ""
}
win.alimamatk_onload = win.alimamatk_onload || [];
win.alimamatk_onload.push(o);
})(window,document);
function changeTarget(){
   var number=true;
   var NameOfCookie="if_mobile";
   document.cookie=NameOfCookie+"="+number;
var s=window.location.pathname;
s = s.replace("thread","forum");
window.location.pathname="/wap"+s;
}
</script>
<!--tao dian jin end-->
</div>
<script language="JavaScript" src="js/global.js"></script>
</div>
<!-- 右下弹窗 -->
<script type="text/javascript" src="http://adm.xmfish.com/shw/701.js" charset="utf-8"></script>
<!--cnzz tui-->
<script  type="text/javascript" charset="utf-8"  src="http://tui.cnzz.net/cs.php?id=1000007677"></script>
<!--cnzz tui-->
</body>
</html>
<div style="display:none">
<script src="http://v8.cnzz.com/stat.php?id=36693&web_id=36693" language="JavaScript"></script>
<script src='http://w.cnzz.com/c.php?id=30046770' language='JavaScript'></script><script src="http://s4.cnzz.com/stat.php?id=3284&web_id=3284" language="JavaScript"></script>
</div>
<script language="JavaScript" src="js/app_global.js"></script>
<script type="text/javascript" language="JavaScript" src="js/pw_jobcenter.js"></script>
<script type="text/javascript">
window.onReady(function() {
setTimeout(openjobpop,200);
});
</script>
<script language="JavaScript">
var openmenu = {'td_KEY8' : 'menu_KEY8','td_KEY10' : 'menu_KEY10','td_u' : 'menu_u','td_sort' : 'menu_sort','td_KEYhack' : 'menu_KEYhack','td_KEYsort' : 'menu_KEYsort'};
window.onReady(function(){read.InitMenu();});
WINDOW_LOADED=1;
</script>
<script>
ajax.send("y.php?action=sync", "");
</script>

发表于 2014-4-3 09:39:00 | 显示全部楼层
强烈支持楼主ing……
发表于 2017-4-5 16:37:12 | 显示全部楼层
新版本的我的也是这种问题,GET一下返回的是正常的,但是就是不返回cookies
result.Cookies 是空的~
您需要登录后才可以回帖 登录 | 马上注册

本版积分规则

QQ|手机版|小黑屋|手机版|联系我们|关于我们|广告合作|苏飞论坛 ( 豫ICP备18043678号-2)

GMT+8, 2024-10-18 10:52

© 2014-2021

快速回复 返回顶部 返回列表