<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title><![CDATA[VIEWER DISCRETION IS ADVISED]]></title>
        <image>
        <title>http://hi.baidu.com</title>
        <link>http://hi.baidu.com</link>
        <url>http://img.baidu.com/img/logo-hi.gif</url>
        </image>
<description><![CDATA[]]></description>
<link>http://hi.baidu.com/evena</link>
<language>zh-cn</language>
<generator>www.baidu.com</generator>
<ttl>5</ttl>


<item>
        <title><![CDATA[亨泰莱]]></title>
        <link><![CDATA[http://hi.baidu.com/evena/blog/item/804b0bd5ca3906c250da4b79.html]]></link>
        <description><![CDATA[
		
		<p><a href="http://www.hanterry.com/index.html">http://www.hanterry.com/index.html</a> 亨泰莱官网<br>
<br>
走进亨泰莱　　亨泰莱留学是东北地区最具影响力的留学咨询机构，东北唯一获得&ldquo;美国 F-1 学生签证规则培训证书&rdquo;及辽宁省首获澳大利亚移民局E-Visa电子签证资格的专业留学机构；美国驻沈签证官、澳洲使馆官员、英国使馆官员曾多次亲临公司教育展...</p>
<p>上面是官方的一点小介绍，</p>
<p>其实是跟别人聊天的时候，她说毕业要去美国，我问什么学校，她说美国加州州立。我问多少钱，她说3万，我问哪家，她说亨泰莱。本科毕业走，去读研。正在办。</p>
<p>于是百度了一下，看起来是家不错的留学的中介。马上存起。</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/evena/blog/category/%C1%F4%D1%A7">留学</a>&nbsp;<a href="http://hi.baidu.com/evena/blog/item/804b0bd5ca3906c250da4b79.html#comment">查看评论</a>]]></description>
        <pubDate>2008年10月12日 星期日  下午 08:02</pubDate>
        <category><![CDATA[留学]]></category>
        <author><![CDATA[电子维那]]></author>
		<guid>http://hi.baidu.com/evena/blog/item/804b0bd5ca3906c250da4b79.html</guid>
</item>

<item>
        <title><![CDATA[个人站长的选择]]></title>
        <link><![CDATA[http://hi.baidu.com/evena/blog/item/478260cf60684e3bf9dc6111.html]]></link>
        <description><![CDATA[
		
		<p>本来想去admin5看看导航栏是怎么分的，结果在右侧的新闻排行看到这么一篇文章：05日 <a target="_blank" href="http://admin5.com/article/20081005/107259.shtml">个人站长不要把理想和青春赌到网站上</a></p>
<p>不禁过去看看，看完评论，其实评论只看一半。有点感觉，但是说不出来。看完这篇文章就像又听到周围很多人都说着同样的话，告诉你他们的经验，劝你。那些话太熟悉了。</p>
<p>其实我不是为自己反驳。只是文章评论让我感触良多，因为平时真的没人跟你认真交流做站这件事。而且周围人几乎都异口同声的劝你而不是鼓励你。做站，应该听到不同的声音。选择是一个人的事。</p>
<p>不过，说真的，我现在确实有赌博的感觉。</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/evena/blog/category/%BD%A8%D5%BE">建站</a>&nbsp;<a href="http://hi.baidu.com/evena/blog/item/478260cf60684e3bf9dc6111.html#comment">查看评论</a>]]></description>
        <pubDate>2008年10月08日 星期三  下午 02:46</pubDate>
        <category><![CDATA[建站]]></category>
        <author><![CDATA[电子维那]]></author>
		<guid>http://hi.baidu.com/evena/blog/item/478260cf60684e3bf9dc6111.html</guid>
</item>

<item>
        <title><![CDATA[派生选择器]]></title>
        <link><![CDATA[http://hi.baidu.com/evena/blog/item/3eeee8192188e77cdbb4bd33.html]]></link>
        <description><![CDATA[
		
		<p>.toplink ul li{</p>
<p>width:90px;<br>
float:left;<br>
height:30px;<br>
line-height:30px;<br>
text-align:center;</p>
<p>}</p>
<p><br>
&lt;ul&gt; 标签定义了无序列表。<br>
&lt;li&gt; 标签定义了列表项目。&lt;li&gt; 标签可用在有序列表 (&lt;ol&gt;) 和无序列表 (&lt;ul&gt;) 中。<br>
.toplink ul li 这种形式是一种派生选择器。dedecms里很多出现这种形式的类。</p>
<p>开始不知道叫什么，以为是伪类。我觉得他们的界限有点模糊。<br>
所谓伪类，网上大部分的例子都是关于元素&lt;a&gt;&lt;/a&gt;的。所以给人感觉，伪类就是类里带冒号的形式比如#toplink a:hover。我感性上是这么认识的。而且感觉伪类更像是派生选择器中的一种链接元素的写法而已。除了写链接元素，其实更多还可以写别的元素，那算不算是伪类。</p>
<p>派生选择器重要的是为了改变局部样式：</p>
<p>.toplink ul li 我理解，重点在最后li元素，是li元素的样式没错。可是有条件：但是只有元素li被元素ul包含，and同时，元素ul被元素toplink包含，这时候的li元素才会出现.toplink ul li这里你写的样式。跟类toplink ul li写的时候的顺序一样。</p>
<p>拿开头写的类举例子，就是只有在&lt;div class=&quot;toplink&quot;&gt;&lt;ul&gt;&lt;li&gt;列表里的内容&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;这种层次关系下，&lt;li&gt;&lt;/li&gt;里的样式才会有所改变。才会表现为宽度&ldquo;90px像素 高30像素 行高30像素 向左浮动 文字居中&rdquo;的效果。</p>
<p>重要的是只要能改变局部样式，管你是不是伪类。<br>
我开始搜到一个地址，&ldquo;派生选择器&rdquo;，<a href="http://www.w3school.com.cn/css/css_syntax_03.asp">http://www.w3school.com.cn/css/css_syntax_03.asp</a> 。再搜几乎网上的派生例子都是抄的，跟上面的一样，谁是原版不知道。</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/evena/blog/category/html%26%2347%3Bcss">html&#47;css</a>&nbsp;<a href="http://hi.baidu.com/evena/blog/item/3eeee8192188e77cdbb4bd33.html#comment">查看评论</a>]]></description>
        <pubDate>2008年10月08日 星期三  下午 01:43</pubDate>
        <category><![CDATA[html&#47;css]]></category>
        <author><![CDATA[电子维那]]></author>
		<guid>http://hi.baidu.com/evena/blog/item/3eeee8192188e77cdbb4bd33.html</guid>
</item>

<item>
        <title><![CDATA[华硕F3Jc笔记本]]></title>
        <link><![CDATA[http://hi.baidu.com/evena/blog/item/5fe7dcbf2903510c18d81f2c.html]]></link>
        <description><![CDATA[
		
		<p>1、其它设备的基本系统设备是问号<a href="http://itbbs-arch.pconline.com.cn/topic.jsp?tid=7527856">http://itbbs-arch.pconline.com.cn/topic.jsp?tid=7527856</a></p>
<p>是读卡器。</p>
<p>2、驱动下载<a href="http://support.asus.com.cn/download/download_item_4.aspx?product=3&amp;model=F3Jc&amp;Sos=17">http://support.asus.com.cn/download/download_item_4.aspx?product=3&amp;model=F3Jc&amp;SLanguage=zh-cn&amp;os=17</a></p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/evena/blog/category/%BB%AA%CB%B6%B1%CA%BC%C7%B1%BE">华硕笔记本</a>&nbsp;<a href="http://hi.baidu.com/evena/blog/item/5fe7dcbf2903510c18d81f2c.html#comment">查看评论</a>]]></description>
        <pubDate>2008年10月08日 星期三  下午 01:15</pubDate>
        <category><![CDATA[华硕笔记本]]></category>
        <author><![CDATA[电子维那]]></author>
		<guid>http://hi.baidu.com/evena/blog/item/5fe7dcbf2903510c18d81f2c.html</guid>
</item>

<item>
        <title><![CDATA[float]]></title>
        <link><![CDATA[http://hi.baidu.com/evena/blog/item/679ba89913a0830e6f068c0c.html]]></link>
        <description><![CDATA[
		
		<p>一看就明白的float <a href="http://hi.baidu.com/bigmouth/blog/item/821b1138e5978af7b311c745.html">http://hi.baidu.com/bigmouth/blog/item/821b1138e5978af7b311c745.html</a></p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/evena/blog/category/html%26%2347%3Bcss">html&#47;css</a>&nbsp;<a href="http://hi.baidu.com/evena/blog/item/679ba89913a0830e6f068c0c.html#comment">查看评论</a>]]></description>
        <pubDate>2008年10月07日 星期二  下午 02:30</pubDate>
        <category><![CDATA[html&#47;css]]></category>
        <author><![CDATA[电子维那]]></author>
		<guid>http://hi.baidu.com/evena/blog/item/679ba89913a0830e6f068c0c.html</guid>
</item>

<item>
        <title><![CDATA[margin]]></title>
        <link><![CDATA[http://hi.baidu.com/evena/blog/item/c9afa912ae760cc8c2fd7834.html]]></link>
        <description><![CDATA[
		
		<p>比较常见的写法<br>
margin:0px auto;<br>
说明上下边距为0px，左右为自动调整；</p>
<p>我们以后将使用到的padding属性和margin有许多相似之处，他们的参数是一样的，<br>
只不过各自表示的含义不相同，margin是外部距离，而padding则是内部距离。</p>
<p>让一个div自动居中，可以在css中定义其margin:0 auto;&nbsp;&nbsp;  当值为0时可以省略单位。</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/evena/blog/category/html%26%2347%3Bcss">html&#47;css</a>&nbsp;<a href="http://hi.baidu.com/evena/blog/item/c9afa912ae760cc8c2fd7834.html#comment">查看评论</a>]]></description>
        <pubDate>2008年10月07日 星期二  下午 01:44</pubDate>
        <category><![CDATA[html&#47;css]]></category>
        <author><![CDATA[电子维那]]></author>
		<guid>http://hi.baidu.com/evena/blog/item/c9afa912ae760cc8c2fd7834.html</guid>
</item>

<item>
        <title><![CDATA[硬拉]]></title>
        <link><![CDATA[http://hi.baidu.com/evena/blog/item/fd4f9202d7d86b094afb5159.html]]></link>
        <description><![CDATA[
		
		<p>硬拉，这曾是阿诺德施瓦辛格打造肌肉围度的关键所在。</p>
<p>这是一个标准的硬拉动作，<a href="http://6.cn/watch/904025.html">http://6.cn/watch/904025.html</a></p>
<p>记得动作要规范：曲腿，下蹲，挺胸抬头后背挺直。有一种屁股向后坐的感觉。</p>
<p>尽量不要让你的后背弯曲，弯曲的后背会给下部的腰肌增加更大的压力，从而是你的腰部受伤。</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/evena/blog/category/%BD%A1%C9%ED">健身</a>&nbsp;<a href="http://hi.baidu.com/evena/blog/item/fd4f9202d7d86b094afb5159.html#comment">查看评论</a>]]></description>
        <pubDate>2008年10月07日 星期二  下午 01:08</pubDate>
        <category><![CDATA[健身]]></category>
        <author><![CDATA[电子维那]]></author>
		<guid>http://hi.baidu.com/evena/blog/item/fd4f9202d7d86b094afb5159.html</guid>
</item>

<item>
        <title><![CDATA[初学html/css的几个网址]]></title>
        <link><![CDATA[http://hi.baidu.com/evena/blog/item/109017089e4ad036e824885d.html]]></link>
        <description><![CDATA[
		
		<p>1、菜鸟吧 <a target="_blank" href="http://www.cainiao8.com">http://www.cainiao8.com</a></p>
<p>2、『十天精通DIV+CSS』新手教程 <a href="http://bbs.dedecms.com/read.php?tid=81103&amp;fpage=12">http://bbs.dedecms.com/read.php?tid=81103&amp;fpage=12</a></p>
<p>3、七本好用的CSS手册提供下载！ <a href="http://www.artery.cn/index.php?option=com_content&amp;view=article&amp;id=55:css&amp;catid=33:web&amp;Itemid=59">http://www.artery.cn/index.php?option=com_content&amp;view=article&amp;id=55:css&amp;catid=33:web&amp;Itemid=59</a></p>
<p>4、新手学习css笔记 一：css命名规则 <a href="http://bbs.dedecms.com/read.php?tid=90698&amp;fpage=2">http://bbs.dedecms.com/read.php?tid=90698&amp;fpage=2</a></p>
<p>3和4我还都没看，只看了1和2，不明白的地方自己百度，于是有了<a target="_blank" href="http://hi.baidu.com/evena/blog/item/1182e8dcb16a75a7cc116654.html">上一篇</a>的总结。</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/evena/blog/category/html%26%2347%3Bcss">html&#47;css</a>&nbsp;<a href="http://hi.baidu.com/evena/blog/item/109017089e4ad036e824885d.html#comment">查看评论</a>]]></description>
        <pubDate>2008年10月07日 星期二  下午 12:58</pubDate>
        <category><![CDATA[html&#47;css]]></category>
        <author><![CDATA[电子维那]]></author>
		<guid>http://hi.baidu.com/evena/blog/item/109017089e4ad036e824885d.html</guid>
</item>

<item>
        <title><![CDATA[两个关于起英文名的文章]]></title>
        <link><![CDATA[http://hi.baidu.com/evena/blog/item/aba085ca87a76880c8176851.html]]></link>
        <description><![CDATA[
		
		<p>我叫彬，22，想取个英文名，要么谐音，要么谐意，希望好听而高雅一点的，万分感谢！_百度知道<a href="http://zhidao.baidu.com/question/26593321.html">http://zhidao.baidu.com/question/26593321.html</a></p>
<p>如何取英文名英文名大全<a href="http://www.hxen.com/yingyuziliao/yingwenmingdaquan/2007-04-29/6138.html">http://www.hxen.com/yingyuziliao/yingwenmingdaquan/2007-04-29/6138.html</a></p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/evena/blog/category/%D3%A2%D3%EF">英语</a>&nbsp;<a href="http://hi.baidu.com/evena/blog/item/aba085ca87a76880c8176851.html#comment">查看评论</a>]]></description>
        <pubDate>2008年10月07日 星期二  下午 12:50</pubDate>
        <category><![CDATA[英语]]></category>
        <author><![CDATA[电子维那]]></author>
		<guid>http://hi.baidu.com/evena/blog/item/aba085ca87a76880c8176851.html</guid>
</item>

<item>
        <title><![CDATA[基础知识]]></title>
        <link><![CDATA[http://hi.baidu.com/evena/blog/item/1182e8dcb16a75a7cc116654.html]]></link>
        <description><![CDATA[
		
		<p>自己总结了点html和css中，理解的不太好的地方。</p>
<p>1、注释（注释我总记混）</p>
<p>html  &lt;!--和--&gt;<br>
CSS /*和*/</p>
<p>2、三种插入CSS的方式，推荐最后一种外插入 <a href="http://www.cainiao8.com/web/css/css3.html">http://www.cainiao8.com/web/css/css3.html</a> （在理解了css是怎么回事以后，选择一种css插入方式很重要，css和html分离是一种更清晰的方式，内容和表现分开是一种趋势，规范的页面基本都是这样用的。）</p>
<p>3、HTML相对路径(relative path)和绝对路径(absolute path)-HTML教程 <a href="http://www.blabla.cn/html_tutorials/022_html_path.html">http://www.blabla.cn/html_tutorials/022_html_path.html</a> （选择了外插入css，就要会用相对路径）</p>
<p>4、CSS常伪类(pseudo-class)-CSS教程 <a href="http://www.blabla.cn/css_tutorials/050_pseudo_class.html">http://www.blabla.cn/css_tutorials/050_pseudo_class.html</a>&nbsp;&nbsp;  （他们管这东西叫伪类，简单了解一下伪类）</p>
<p>5、CSS2盒模型 （几乎所有教程里都会经常提的盒子）<br>
  <br>
自从1996年CSS1的推出，W3C组织就建议把所有网页上的对像都放在一个盒(box)中，设计师可以通过创建定义来控制这个盒的属性，这些对像包括段落、列表、标题、图片以及层&lt;div&gt;。盒模型主要定义四个区域：内容(content)、边框距(padding)、边界(border)和边距(margin)。上面我们讲的sample层就是一个典型的盒。对于初学者，经常会搞不清楚margin，background-color，background-image，padding，content，border之间的层次、关系和相互影响。这里提供一张盒模型的3D示意图，希望便于你的理解和记忆。</p>
<div forimg="1">
<p><img class="blogimg" border="0" small="0" src="http://hiphotos.baidu.com/evena/pic/item/5a9538342b50a2215ab5f5c1.jpg"></p>
<p>6、margin：指边框以外的空白区域，用于设置页边距或对象与对象之间的距离。30px 0 0 40px分别代表上、右、下、左（顺时针）四个边距。如果四边都一样，可以简写成margin:10px，这样代表margin:10px 10px 10px 10px。如果上边距和下边距相等，左边距和右边距相等时，可以简写成margin:5px 10px，这样代表margin:5px 10px 5px 10px。也可以分别定义，如margin-top，指定上边距。右、下、左分别是margin-right、margin-bottom、margin-left。当值为0时可以省略单位。如：margin:0 5px等同于margin:0px 5px。（关于margin。有的页面里属性值就一个0，省略掉了px，其实：&ldquo;当值为0时可以省略单位。如：margin:0 5px等同于margin:0px 5px。&rdquo;）</p>
<p>7、由浅入深漫谈margin属性 <a href="http://www.blueidea.com/tech/web/2007/4546.asp">http://www.blueidea.com/tech/web/2007/4546.asp</a> （对margin还是迷惑，就搜了一下）</p>
<p>8、同时使用两个class <a href="http://www.cnblogs.com/freexiaoyu/articles/1268530.html">http://www.cnblogs.com/freexiaoyu/articles/1268530.html</a> （一个标签可以给两个class，用空格分开，同时应用两个class的属性。这是不是就是层叠样式表中&ldquo;层叠&rdquo;的意思呢）</p>
<p>9、认识DIV及基本布局的简单应用 <a href="http://www.w3cui.org/article/7.html">http://www.w3cui.org/article/7.html</a> （用来进阶的）</p>
</div> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/evena/blog/category/html%26%2347%3Bcss">html&#47;css</a>&nbsp;<a href="http://hi.baidu.com/evena/blog/item/1182e8dcb16a75a7cc116654.html#comment">查看评论</a>]]></description>
        <pubDate>2008年10月07日 星期二  下午 12:39</pubDate>
        <category><![CDATA[html&#47;css]]></category>
        <author><![CDATA[电子维那]]></author>
		<guid>http://hi.baidu.com/evena/blog/item/1182e8dcb16a75a7cc116654.html</guid>
</item>

<item>
        <title><![CDATA[云南]]></title>
        <link><![CDATA[http://hi.baidu.com/evena/blog/item/3f8a23fad2676a18a9d311d6.html]]></link>
        <description><![CDATA[
		
		<p>下面的图片是在别人空间上看到的，是云南的一个地方。</p>
<div forimg="1">
<p><img class="blogimg" border="0" small="0" src="http://hiphotos.baidu.com/evena/pic/item/1e5066c6c4585b019c163df5.jpg"></p>
<p>是大理。</p>
<p>图应该没PS。</p>
</div> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/evena/blog/category/%C9%FA%BB%EE">生活</a>&nbsp;<a href="http://hi.baidu.com/evena/blog/item/3f8a23fad2676a18a9d311d6.html#comment">查看评论</a>]]></description>
        <pubDate>2008年10月06日 星期一  上午 02:43</pubDate>
        <category><![CDATA[生活]]></category>
        <author><![CDATA[电子维那]]></author>
		<guid>http://hi.baidu.com/evena/blog/item/3f8a23fad2676a18a9d311d6.html</guid>
</item>

<item>
        <title><![CDATA[法藤项圈]]></title>
        <link><![CDATA[http://hi.baidu.com/evena/blog/item/8645413df47c95e83c6d97d6.html]]></link>
        <description><![CDATA[
		
		哥哥送给我一个法藤项圈，一直怀疑这东西的效果，以前朋友也给他们家里人买过，也不知道这东西到底有没有效果。<br>
随便搜了一下，有个链接。<a href="http://hi.baidu.com/jiazi1981629/blog/item/4958ead3ba220b063af3cfdd.html">http://hi.baidu.com/jiazi1981629/blog/item/4958ead3ba220b063af3cfdd.html</a><br>
留个底子，如果以后有人问起来，就知道怎么回事了，就可以肯定的回答说：装饰品。 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/evena/blog/category/%C9%FA%BB%EE">生活</a>&nbsp;<a href="http://hi.baidu.com/evena/blog/item/8645413df47c95e83c6d97d6.html#comment">查看评论</a>]]></description>
        <pubDate>2008年10月06日 星期一  上午 02:37</pubDate>
        <category><![CDATA[生活]]></category>
        <author><![CDATA[电子维那]]></author>
		<guid>http://hi.baidu.com/evena/blog/item/8645413df47c95e83c6d97d6.html</guid>
</item>

<item>
        <title><![CDATA[joomla cms]]></title>
        <link><![CDATA[http://hi.baidu.com/evena/blog/item/918ff924050062074d088d04.html]]></link>
        <description><![CDATA[
		
		<p>国外的一个开源免费的CMS，joomla发音是&ldquo;君啦&rdquo;</p>
<p><a href="http://www.joomla.org.tw/">http://www.joomla.org.tw/</a> 台湾的官方，做的不错</p>
<p><a href="http://www.maycode.com/">http://www.maycode.com/</a> 另外一个joomla站</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/evena/blog/category/Dedecms">Dedecms</a>&nbsp;<a href="http://hi.baidu.com/evena/blog/item/918ff924050062074d088d04.html#comment">查看评论</a>]]></description>
        <pubDate>2008年10月05日 星期日  下午 03:04</pubDate>
        <category><![CDATA[Dedecms]]></category>
        <author><![CDATA[电子维那]]></author>
		<guid>http://hi.baidu.com/evena/blog/item/918ff924050062074d088d04.html</guid>
</item>

<item>
        <title><![CDATA[一个用dede做的站]]></title>
        <link><![CDATA[http://hi.baidu.com/evena/blog/item/3cae8313b7e601866438db3a.html]]></link>
        <description><![CDATA[
		
		<p>一个用dede做的站</p>
<p><a href="http://www.1717h.net/">http://www.1717h.net/</a> 域名有点h</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/evena/blog/category/Dedecms">Dedecms</a>&nbsp;<a href="http://hi.baidu.com/evena/blog/item/3cae8313b7e601866438db3a.html#comment">查看评论</a>]]></description>
        <pubDate>2008年10月05日 星期日  下午 03:01</pubDate>
        <category><![CDATA[Dedecms]]></category>
        <author><![CDATA[电子维那]]></author>
		<guid>http://hi.baidu.com/evena/blog/item/3cae8313b7e601866438db3a.html</guid>
</item>

<item>
        <title><![CDATA[免费绿色小巧截屏 EPSnap]]></title>
        <link><![CDATA[http://hi.baidu.com/evena/blog/item/5ffcbd4b4167baf683025c5e.html]]></link>
        <description><![CDATA[
		
		<p>EPSnap&nbsp;&nbsp;&nbsp;  一个300K的绿色截屏软件，用了一下感觉还可以。</p>
<p>主要是小，而且绿色。国人开发的，这是官方网站。<a href="http://www.epsnap.com/">http://www.epsnap.com/</a>&nbsp;&nbsp;  捕捉滚动窗口给人感觉比较特别。可以捕捉整个页面的网页为一个图片，包括滚动条下方屏幕看不到的区域。</p>
<p>其实截屏软件，一直没找到特别特别舒服的。</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/evena/blog/category/%C8%ED%BC%FE">软件</a>&nbsp;<a href="http://hi.baidu.com/evena/blog/item/5ffcbd4b4167baf683025c5e.html#comment">查看评论</a>]]></description>
        <pubDate>2008年10月04日 星期六  下午 05:02</pubDate>
        <category><![CDATA[软件]]></category>
        <author><![CDATA[电子维那]]></author>
		<guid>http://hi.baidu.com/evena/blog/item/5ffcbd4b4167baf683025c5e.html</guid>
</item>


</channel>
</rss>