/*****************************************************************
******************************************************************
以下为所有风格通用样式
margin: 0;padding: 0;设置外边距,内边距空隙都为0
font-size: 12px;为字体大小.一般表格内的,不受他控制
li,ul设置list-style: none;主要是取消默认的小圆点.不太好看
******************************************************************
*****************************************************************/

body, form, ul, li, p, dl, dd, dt ,h,td,th,h3{
	margin: 0;
	padding: 0;
	font-size: 12px;
}
li,ul{
	list-style: none;
}

/******************************************
TD中的color: #333333;为没有超级链接的字体颜色
VERTICAL-ALIGN: top;表格里的内容居顶
text-align:left;表格里的内容居左
*******************************************/

TD {
	color: #333333;
	VERTICAL-ALIGN: center;
}

/******************************************
border:1px solid #ccc; 表单边框为1个像素的实线,
要为虚线改solid为dotted,要换颜色改#ccc
可以自定义背景颜色
background:#eee;
*******************************************/

input,textarea{
	border:1px solid #ccc;
}

/******************************************
网页整体宽度
******************************************/
.wrap{
	width:960px;
	margin:auto;
}
/*横幅广告*/
#banner_ad{
	margin-top:5px;
}
/******************************************
font-size: 12px;超级链接字体大小
color:字体颜色
text-decoration: none;没有下画线.要有下画线.改none为underline
a 为统一超级链接,
a:link没有点击过的超级链接样式
a:visited 被点击过的超级链接样式
a:hover 鼠标指向时的超级链接样式
a:active 被用户激活(在鼠标点击与释放之间发生的事件)时的样式.少用
*******************************************/

a:link{color:#000; text-decoration:none;
}
a:visited{color:#000; text-decoration:none;
}
a:hover{color:#f30;text-decoration:underline;
}
a:active {
	text-decoration: none;
}

/******************************************
#toplogin 网页顶部登录框表格ID编号
background表格背景颜色
height高度
*******************************************/

#toplogin{
	background:#E3F5FC;
	height:20px;
}
#toplogin .jstime{
	margin-right:5px;
}
/******************************************
#toplogin input.login_name用户名表单,
#toplogin input.login_pwd密码表单,写在一行,用,号分开共用样式
width:90px;表单宽
height:15px;表单高
*******************************************/

#toplogin input.login_name,#toplogin input.login_pwd{
	width:90px;
	height:15px;
}

/******************************************
#toplogin input.login_sub提交按钮表单,
width:90px;表单宽
height:15px;表单高
background:#D2E4FC;	背景颜色
*******************************************/

#toplogin input.login_sub{
	width:40px;
	height:19px;
	background:#D2E4FC;
}

/******************************************
#guide头部网站导航表格编号
margin-top:5px;与上方表格距离5像素
border:1px #6B92D6 solid;边框样式solid改为dotted则为虚线
height:28px;高度
background:#D2E4FC;背景颜色
#guide td导航表格内部TD容器
border:1px solid #FFF;内边框样式
padding:6px 3px 4px 3px;导航文字与上右下左的距离
*******************************************/

#guide{
	margin-top:5px;
	border-top:1px #6B92D6 solid;
	border-bottom:1px #A7CAFA solid;
	height:28px;
	background:#D2E4FC url(head1.gif);
}
#guide td{
	border:1px solid #FFF;
	border-left:0px solid #FFF;
	border-right:0px solid #FFF;
	padding:6px 3px 4px 3px;
	text-align:left;
}
#guide2{
	background:#F5FAFE;
	height:24px;
	border-bottom:1px #A7CAFA solid;
}
#guide2 td{
	padding-top:6px;
	padding-left:2px;
}
.chooseGuide{
	border-bottom:1px dotted #333;
}
/******************************************
.MainTable .guide样式导航表格样式
margin-top:5px;与上方表格的距离
border:1px #A7CAFA solid;边框样式,solid可更换成dotted虚线
height:20px;表格高度
background:#F5FAFE;表格背景颜色

.MainTable .guide td{ padding:5px; 表格内的文字距离四周的间距
可改成 padding:5px 0 0 0;指上右下左
*******************************************/

.MainTable .guide{
	margin-top:5px;
	border:1px #A7CAFA solid;
	height:20px;
	background:#F5FAFE url(head2.gif);
}
.MainTable .guide td{
	padding:5px;
	text-align:left;
}


/*****************************************************************
******************************************************************
内容大表格模块样式
width:100%;占满整个空间宽度
margin-top:5px;与上一个表格间距为5个像素
overflow:hide;内容超过时,将隐藏.不过上面用百分比,一般这里设置无效.
只有上面用具体像素,这里才生效
border:1px #A7CAFA solid;边框样式,1个像素,可以改solid为虚线dotted,要取消边框改1px为0px
******************************************************************
******************************************************************/

.dragTable{
	width:100%;
	margin-top:5px;
	overflow:hide;
	border:1px #F8DFCB solid;
	
}

/******************************************
内容表格模块头部样式
background:#D2E4FC;背景颜色
height:20px;高度
padding-left:1em;字体与左边距离
padding-top:7px;字体与上方距离
border:1px #FFF solid;内边框样式,一般设置为0px较多,即不要内边框居多
******************************************/

.dragTable .head{
	background:#ccc url(head.gif);
	height:20px;
	padding-left:1.8em;
	padding-top:7px;
	border:1px #ccc solid;
}

/******************************************
模块主题文字
float:left;居左,
可以设置为粗体 font-weight:bold;颜色为color:#000;
******************************************/

.dragTable .TAG{
	float:left;
	color:#000;
	font-weight:bold;
}
.dragTable .TAG a{
	color:#000;
}

/*文章列表的更多*/

.dragTable .more a{
	color:#000;
	margin-right:1em;
}
/******************************************
整体大表格之间的间隙
******************************************/
.MainTable{
	margin-top:5px;
}
/******************************************
右边窄表格模块样式
width:98%;宽度
line-height:17px;字体行高
******************************************/

.MainTable .Side .dragTable{
	width:98%;
}

.MainTable .Side .dragTable .middle{
	line-height:17px;
}

/******************************************
内容模块主体部分
padding:8px;距离四周距离为8个像素,
可以改成更具体些的padding:8px 0 0 0;即上右下左的距离
line-height:20px;行高,即是使用<br>换行符时的文字行高
******************************************/

.dragTable .middle{
	padding:6px 1px 4px 7px;
	height:50px;
	line-height:20px;
}

/******************************************
右边窄表格最新,最热的内容样式.
	width:210px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
通过设定固定宽度,使控制自动隐藏超出边界的内容自动隐藏,用省略号表示
只对<ul><li>有效
******************************************/

.MainTable .Side .dragTable .middle ul li{
	width:210px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}

/******************************************
右边窄表格最新,最热的标题样式.
必须<ul><li>有超链接的才有效
display:block;定义链接为实体,方便做效果处理
margin-left:4px;文字与左边大表格边框的距离
text-indent:0.6em;文字与小图标的距离
background:url(title_icon3.gif) no-repeat left;	右边列表,最热,最新等等标题前面的小图标
no-repeat 不平铺 left;背景居左
******************************************/

.MainTable .Side .dragTable .middle ul li a{
	display:block;
	margin-left:4px;
	text-indent:0.6em;
	background:url(title_icon3.gif) no-repeat left;
}


/******************************************
列表页,包括首页,文章子栏目文章表格样式,表格高度
******************************************/
#AutoRows .dragTable .middle{
	height:100px;
	padding-top:0px;
	padding-bottom:0px;
}

/******************************************
列表页,包括首页,文章子栏目文章标题样式
	width:246px;
	display:block;
	overflow:hidden;
	text-overflow:ellipsis;
定义width指定宽度.是为了自动隐藏超出边界的标题.用百分比不能控制
line-height:18px;行高
text-indent:0.6em;文字小图标的距离
background:url(title_icon3.gif) no-repeat ;标题前的小图标
background-position: 0 40%;	小图标X,Y的坐标


	width:246px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
******************************************/

#AutoRows .dragTable ul li{
	display:block;
	line-height:18px;
	text-indent:0.6em;
	background:url(title_icon3.gif) no-repeat 0 40% ;
}

#AutoRows .dragTable .list_title{
	line-height:18px;
	text-indent:0.6em;
	background:url(title_icon3.gif) no-repeat 0 40% ;
}

/******************************************
文章中列表页中的图片主题,图片列表
.listpic每张图的占位空间
width:127px;占位宽度127像素
padding:3px 0 3px 4px;内间隙距离上右下左
float:left;居左排列
.listpic .title图片底下的标题样式
	width:127px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
固定了宽度,控制自动隐藏超出边界的文字
******************************************/

.listpic{
	width:127px;
	padding:3px 0 3px 4px;
	float:left;
}
.listpic .title{
	width:127px;
	text-align:center;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}

/******************************************
文章中列表页中的图片主题,图片内边框样式
border:1px #FFF solid;边框一个像素,为实线,可以改0px,即取消内边框
改solid为dotted即是虚线
******************************************/

.listpic img{
	border:1px #FFF solid;
	width:120px;
	height:90px;
}

/******************************************
文章中列表页中的图片主题,图片外边框样式
width:120px;	图片外边框宽 height:90px;	图片外边框高
display:block;	定义链接为实体利于加效果
text-align :center;	图片在边框内居中
border:1px #ccc solid;图片外边框样式,要取消边框,可以把1改0,
要加粗粗,把1改成更大的数,要用虚线,可以把solid改成dotted,要换颜色修改#ccc为其他的
margin-bottom:5px;			与底部文字的距离
******************************************/

.listpic .img a{
	width:120px;
	height:90px;
	display:block;
	text-align :center;
	border:1px #ccc solid;
	margin-bottom:5px;
}

/******************************************
文章列表
padding:7px 5px 0 5px;内间隙,上右下左的距离
border-bottom:1px dashed #ccc;底部虚线,也可改为实线solid 或其他颜色

.listarticle span参数样式
******************************************/

.listarticle td{
	padding:7px 5px 0 5px;
	border-bottom:1px dashed #ccc;
}
.listarticle span{
	display:block;
	float:left;
}

/******************************************
文章列表
文章标题样式
text-indent: 0.6em;与小图标的距离
background:url(title_icon3.gif) no-repeat left;小图标,居左不平铺
background-position: 0em 40%;小图标是背景,坐标位置

.listarticle span.time{float:right;}时间靠右显示
******************************************/

.listarticle span.title{
	text-indent: 0.6em;
	background:url(title_icon3.gif) no-repeat left;
	background-position: 0em 40%;
}
.listarticle span.time{
	float:right;
}

/******************************************
分页
******************************************/

.page{
	width:98%;
	margin-top:1em;
	clear:both;
}

.page a{
	display:block;
	float:left;
	margin-right:3px;
	border:1px solid #ccc;
	padding:2px 4px 1px 4px;
}

/*****************************************************************
******************************************************************
文章内容页
.content_word,.content_word p多种格式的控制内容的样式,字号为15像素
******************************************************************
******************************************************************/
.content_word,.content_word p{
	font-size:15px;
}

/*****************************************************************************************
******************************************************************************************
图片频道,视频,FLASH,音乐,商城,下载频道的列表页的图片列表
******************************************************************************************
******************************************************************************************/
/******************************************
display:block;定义为模块
width:98%;宽度为98%
margin:8px 8px 0 10px;与其他的外间隙上右下左的距离
height:100px;高度
overflow:hide;文字超过则隐藏,不过上面宽度只有设置成具体像素才生效.
border-bottom:1px #ccc dotted;底部边框为一个像素的虚线.改成solid则为实线,改成0px则取消边框
这里特别要注意的是.把宽度改成width:44%;增加一句float:left;就可以一行显示两个
******************************************/

.ListPhoto ul{
	display:block;
	width:96%;
	margin:8px 8px 0 10px;
	height:100px;
	overflow:hide;
	border-bottom:1px #ccc dotted;
}

/******************************************
图片与介绍文字是左右并排
******************************************/

.ListPhoto ul li{
	display:block;
	float:left;
}

/******************************************
图片容器样式,
width:130px;宽
border-right:1px #ccc dotted;容器右边样式,改dotted为solid则为实线,把1px改为0则取消边框
******************************************/

.ListPhoto ul li.img{
	width:130px;
	border-right:1px #ccc dotted;
}

/******************************************
图片内边框样式
******************************************/

.ListPhoto ul li.img img{
	border:1px solid #ccc;
}

/******************************************
图片外边框样式
	display:block;	定义为实体,方便加效果
	width:120px;	宽
	height:90px;	高
	text-align :center; 图片居中
	background:#eee;	背景颜色,只有图片太小时,才看得到效果.
	border:1px solid #333; 外边框样式,可改solid为dotted虚线.取消边框的话.改1px为0
******************************************/

.ListPhoto ul li.img a{
	display:block;
	width:120px;
	height:90px;
	text-align :center;
	background:#eee;
	border:1px solid #333;
}

/******************************************
图片的相关文字样式
margin-left:1em;与左边距离1个汉字距离
******************************************/

.ListPhoto ul li.word{
	margin-left:1em;
}

/******************************************
图片的相关文字样式
display:block;做为实体,每个占一行,
overflow:hide,文字超出边界,自动隐藏.一般只有设置了宽度时才生效
******************************************/

.ListPhoto ul li.word span{
	display:block;
	overflow:hide;
}

/******************************************
图片的相关文字,超级链接的文字加粗显示
******************************************/

.ListPhoto ul li.word span.title a{
	font-weight:bold;
}

/*****************************************************************************************
*****************************************************************************************
**********评论
******************************************************************************************
******************************************************************************************/

#comment .content{
	border:dotted 1px #ddd;
	margin-bottom:10px;
}
#comment .content .word{
	border-bottom:solid 1px #ddd;
	padding-left:5px;
	height:50px;
}
#comment .content .img{
	border-right:dotted 1px #ddd;
	padding:1em;
}
#comment .content .info{
	padding:2px 0 0 5px;
}

/*****************************************************************************************
*****************************************************************************************
************留言本
*****************************************************************************************
*****************************************************************************************/

.guestbook{
	margin-bottom:4px;
	border:1px dotted #A7CAFA;
}
.guestbook .Ftd{
	padding:4px;
	border-right:1px dotted #A7CAFA;
}
.guestbook .Atd{
	border-top:1px solid #D2E4FC;
	padding-left:4px;
}
.guestbook .Ctd{
	padding:4px;
}

/*****************************************************************************************
*****************************************************************************************
间隔条
*****************************************************************************************
*****************************************************************************************/
.Space{
	height:23px;
	margin-top:4px;
	background:url(space_bg.jpg);
}
.Space .L{
	padding:5px 0 0 5px;
	font-weight:bold;
	color:#FFF;
}
.Space .L{
	float:left;
}
.Space .R{
	padding:5px 5px 0 0;
	float:right;
}



/*********************************************************************
**********************************************************************
AJAX在线编辑DIV容器
这个会员看不到.只是版主管理员才可以看到.这是后台风格
一般不必修改了.修改了会员也看不到
**********************************************************************
*********************************************************************/
#AjaxEditTable{
	border:1px solid #BEDDFF;
	background:#FFF;
}
#AjaxEditTable .head{
	height: 21px;
	background: #DBEAFF;
	border-bottom:1px solid #BEDDFF;
	padding:3px 5px 0 7px;
}
#AjaxEditTable .head a{
	color:#FFF;
}
#AjaxEditTable .head span{
	DISPLAY: block; 
	FLOAT: right;
}
#AjaxEditTable .middle{
	background:#FFF;
	line-height:18px;
	padding:5px;
}
#AjaxEditTable .middle input,#AjaxEditTable .middle textarea{
	border:1px solid #BEDDFF;
	background:#FFF;
}

/*列表栏目名称*/
.showsortname{
	background:url(article_elite.gif) no-repeat 0.3em 0;
	padding-left:0.3em;
	text-indent:1.5em;
	font-weight:bold;
	float:left;
}

/*列表页,标题+图片+内容的显示样式*/
.list_sortTCP{
	margin-bottom:12px;
	width:99%;
}
.list_sortTCP .pic{
	padding-right:1em;
}
.list_sortTCP .content{
	border-bottom:1px dotted #ccc;
	text-indent:2em;
}

/*列表页,标题+内容的显示样式*/
.list_sortTC{
	margin-bottom:5px;
	width:99%;
	border-bottom:1px dotted #ccc;
}
.list_sortTC .content{
	text-indent:2em;
}

/*下拉菜单的背景颜色与透明度设置*/
#menuTable{
	background:#F5FCFE;
	border:1px solid #A7CAFA;
	filter:Alpha(Opacity=80);
}
#menuTable td{
	padding:3px 0px 3px 5px;
	line-height:15px;
}


/******************************************
以下为yczzxt004模板，首页部份
******************************************/

.box{clear:both;text-align:left;
}
.bold{font-weight:bold;
}
.clear{ clear:both;
}
.org{ color:#f30;
}
.ftg{color:#390;}
a.orange:link,a.orange:visited{ color:#f30;
}
a.blue:link,a.blue:visited{ color:#036;
}
a.blue:hover{ color:#f30;
}

a.green:link,a.green:visited{ color:#359A32;
}
a.green:hover{ color:#f30;
}
a.cmc:link,a.cmc:visited{ color:#f30;
}
a.cmc:hover{ color:#f30;
}
.blue a:link,.blue a:visited{ color:#036;
}
.blue a:hover{ color:#f30;
}
em{font:normal 12px Tahoma;}
h1,h2,h3,h4{margin:0;padding:0;
}
hr{ height:1px;border:none; border-bottom:1px dotted #ccc;width:96%;
}
.space{ clear:both;height:3px; overflow:hidden;
}
ul,li{margin:0;padding:0;list-style:none;}
dl{ display:inline;}
dd{margin:0;padding:0;}
q{ quotes:0;}
.f{clear:both;margin:0 auto;width:960px; text-align:left;overflow:hidden;}

/*广告*/
#H_ad1,#H_ad2{float:left;margin-left:5px;}
#H_ad3{clear:both;margin-top:3px;margin-bottom:3px;}
#H_ad3 .bt{margin:0 0;}
#H_ad3 .b ul{display:inline;}
#H_ad3 .b li{float:left;width:120px; line-height:24px;}
#FAD_1{margin:10px 8px;padding:2px;width:304px;border:1px solid #333;}
#IAD_1,#IAD_2,#IAD_3{margin:10px;}
#LRAd-1{margin:6px;padding:3px;background:#D5E6C4;}
#LRAd-1 .c{padding:2px;height:300px;border:1px solid #679A35;background:#fff;}
#UAD_1{margin:6px;padding:3px;background:#FFECCE;}
#UAD_1 .c{padding:2px;height:60px;border:1px solid #fc9;background:#fff;}

/*头部*/
#yczzxt004_login_time{height:22px;border-bottom:1px solid #bbb;text-align:center;line-height:24px;}
#yczzxt004_login_time a{padding:0 2px;}
#yczzxt004_header{margin:3px auto;width:960px;height:70px;overflow:hidden;border-bottom:0px solid #ccc; text-align:left;}
#logo{float:left;width:210px;height:70px; background:url(yc_logo.jpg) left center no-repeat;}
#yczzxt004_nav{margin:0 auto;width:958px;height:42px;border:1px solid #ccc;background:url(nav_bg.gif) #F4F4F4 repeat-x;text-align:left;}
#yczzxt004_nav ul{float:left;margin:7px 0 0 8px;padding:0;}
#yczzxt004_nav li{float:left;width:708px;line-height:18px;}
#yczzxt004_navs{float:left;margin-left:10px;width:222px;height:42px; line-height:42px; text-align:center; background:url(navs_bg.gif) no-repeat;}
#yczzxt004_navs a:link,#yczzxt004_navs a:visited{color:#c33;}

/*第一大栏*/
.bdy{border:1px solid #fc9;}

#yczzxt004_1 .l{float:left;width:326px; background:url(focus_l_bg.gif) top repeat-x;}
#yczzxt004_1_1{margin:10px 8px;}
#yczzxt004_1_1 h3{font:bold 14px Tahoma;color:#f30; line-height:25px; background:url(F_bbs_tbg.gif) left center no-repeat;}
#yczzxt004_1_1 li{padding-left:12px;line-height:21px; background:url(li_red.gif) left center no-repeat;}
#yczzxt004_1_1 .list em{float:right;margin-top:-18px;margin-right:10px;color:red ;font:normal 11px Tahoma;}

#yczzxt004_1 .r{float:left;margin-left:6px;width:625px;}
#yczzxt004_1 .r .h{height:29px;padding--left:10px; background:url(focus_r_h.gif) bottom no-repeat;}
#yczzxt004_1 .r h3{}
#yczzxt004_1 .r h3 a{float:left;display:block;width:72px;height:20px;font:bold 14px Tahoma; line-height:20px;text-align:center;}
#yczzxt004_1 .r h3 .on{color:#f60;background:#FDF5EA;border:1px solid #fc9;border-bottom:none;}
#yczzxt004_1 .r .h span{padding:0px 20px;}
#frnav{float:right;margin-top:-22px;}
*+html #frnav{margin-top:-22px;}
#frnav a:link,#frnav a:visited{color:#f30;}
#yczzxt004_1_2{float:left;width:358px;}
#yczzxt004_1_2 h4{font:bold 18px Tahoma; line-height:30px; text-align:center;}
#yczzxt004_1_2 q{display:block;color:#666;height:22px; line-height:24px; text-align:center;}
#yczzxt004_1_2 .list li{padding-left:12px;font:normal 14px Tahoma; line-height:25px; background:url(li_black.gif) left center no-repeat;}
#yczzxt004_1_2 .list em{float:right;margin-top:-20px;margin-right:10px;color:#999;font:normal 11px Tahoma;}
#yczzxt004_1_2 u{ text-decoration:none;}
#yczzxt004_1_2 u a{ text-decoration:underline;}

#yczzxt004_1_2 .plist{margin-left:2px;}
#yczzxt004_1_2 .plist li{float:left;width:118px;}
#yczzxt004_1_2 .plist img{width:108px;height:66px;padding:1px;border:1px solid #999;}
#yczzxt004_1_2 .plist em{display:block; line-height:20px; text-align:center;}

#hotsp a{font-weight:bold;display:block;margin:3px 3px;float:left;width:79px;height:20px;border:1px solid #fc9; text-align:center; line-height:20px;}
#hotsp a:link,#hotsp a:visited{color:#f60;}
#yczzxt004_1_3{float:left;margin-left:3px;width:260px;}
#yczzxt004_1_3 em{display:block; line-height:26px;font-weight:bold;text-align:center; background:url(video_em_bg.gif) repeat-x;}
#yczzxt004_1_3 .t{margin:2px;border-bottom:1px dashed #ddd;}
#yczzxt004_1_3 .list{margin:6px;}
#yczzxt004_1_3 li{padding-left:12px;line-height:25px;width:230px;background:url(li_black.gif) left center no-repeat;border-bottom:1px dashed #ddd;}

/*第二大栏*/
#yczzxt004_2{margin:6px auto;}
#yczzxt004_2_1{float:left;width:326px;background:#FFECCE;}
#yczzxt004_2_1 .box{margin:3px;border:1px solid #fc9;background:#fff;}
.h h3{margin-left:10px;font:bold 14px Tahoma; line-height:26px;}
#yczzxt004_2 .h{height:26px;background:url(h_h3_bg1.gif) repeat-x;border-bottom:1px solid #fc9;}
#yczzxt004_2_1 dl{}
#yczzxt004_2_1 dd{margin:0 6px;height:110px;}
#yczzxt004_2_1 h4{font:bold 14px Tahoma;line-height:26px;}
#yczzxt004_2_1 dd a:link,#yczzxt004_2_1 dd a:visited{color:#f30;}
#yczzxt004_2_1 .pic{float:left;margin-right:8px;}
#yczzxt004_2_1 .pic img{width:136px;height:96px;padding:2px;border:1px solid #999;}
#yczzxt004_2_1 q{ line-height:20px;}
#yczzxt004_2_1 q a:link,#yczzxt004_2_1 q a:visited{color:#333;}
#yczzxt004_2_1 q a:hover{color;#f30;}
#yczzxt004_2_1 .list{margin:6px;padding-top:6px;height:60px;border-top:1px solid #ddd;}
#yczzxt004_2_1 .list li{float:left;width:280px;padding-left:12px;line-height:20px; background:url(li_red.gif) left center no-repeat;}
#yczzxt004_2_2{float:left;margin:0 6px;background:#FFECCE;width:355px;}
#yczzxt004_2_2 .box{margin:3px;border:1px solid #fc9;background:#fff;height:413px;}
#yczzxt004_2_2 .t{margin:6px;}
#yczzxt004_2_2 .t q{ line-height:18px;}
#yczzxt004_2_2 .pic{float:left;margin-right:8px;}
#yczzxt004_2_2 .pic img{width:136px;height:96px;padding:2px;border:1px solid #999;}
#yczzxt004_2_2 h4{font:bold 14px Tahoma;line-height:26px;}
#yczzxt004_2_2 .tip{margin:6px;border-top:1px solid #fc9;}
#yczzxt004_2_2 .tip h4{font:bold 14px Tahoma;color:#f60;line-height:28px;}
#yczzxt004_2_2 .tip q{background:#FDFAF5;margin:2px;line-height:22px;}
#yczzxt004_2_2 .list{margin:6px;padding-top:6px;}
#yczzxt004_2_2 .list li{float:left;width:300px;padding-left:12px;height:20px;line-height:22px; background:url(li_red.gif) left center no-repeat;}
#yczzxt004_2_3{float:left;width:260px;}
#yczzxt004_2_3 h3{float:left;}
#yczzxt004_2_3 .h a{ display:block; text-align:center;margin-top:2px;}
#yczzxt004_2_3 .on{width:90px;height:24px; line-height:24px;background:url(brand_on.gif) no-repeat;}
#yczzxt004_2_3 a.on:link,#yczzxt004_2_3 a.on:visited{color:#fff;}
#yczzxt004_2_3 .list{margin:6px;}
#yczzxt004_2_3 .list ul{background:url(info_r_li.gif) left no-repeat;}
#yczzxt004_2_3 .list li{padding-left:26px;line-height:22px;border-bottom:1px dashed #ddd;}
#bcom{margin:8px 6px;background:#FFECCE;}
#bcom .c{margin:3px;padding:6px;border:1px solid #fc9;background:#fff; line-height:20px;}
#bcomtwo{margin:8px 6px;background:#FFECCE;}
#bcomtwo .c{margin:3px;padding:6px;border:1px solid #fc9;background:#fff; line-height:20px;}

/*第三大栏*/
#yczzxt004_3{margin:6px auto;border-bottom:1px solid #fc9;}
#yczzxt004_3 .la{float:left;width:716px;height:544px!important;height:545px;background:url(user_c_bg.gif) repeat-y;}
#yczzxt004_3 .ha{height:42px;width:716px;background:url(user_h_bg.gif) no-repeat;}
h2{font:bold 14px Tahoma;}
#yczzxt004_3 h2{display:inline;float:left;margin:10px 0 0 65px;color:#f30;}
.cnav{float:left;padding-left:15px;margin-top:12px;}
#yczzxt004_3 .l{display:inline;clear:both;float:left;margin:0 3px 0 10px;width:260px;}
#yczzxt004_3 .l .h{height:27px;border:1px solid #FE9B64; border-bottom:none;background:url(user_h_i.gif) repeat-x;}
#yczzxt004_3_1{padding:3px;background:#FFECCE;}
#yczzxt004_3_1 .h h3{float:left;margin:0;margin-left:16px;text-align:center;width:100px;}/*@@@@@@@@@@@@@@@@@@@@@@@@*/
#yczzxt004_3_1 .h .on{margin-top:1px;color:#f30;border-left:0;background:url(user_h_ion.gif) repeat-x;}
#yczzxt004_3_1 .c{padding:6px;border:1px solid #FE9B64; border-top:none;background:#fff;}
#yczzxt004_3_1 li{padding-left:12px;line-height:22px;border-bottom:1px dashed #ddd;background:url(li_red.gif) left center no-repeat;}
#yczzxt004_3_1 li em{float:right;margin-top:-18px;margin-right:10px;color:#999;font:normal 11px Tahoma;}
/*第三大栏左侧下部*/
#ustar2{margin:3px 0px;background:#FFECCE;}
#ustar2 .c{margin:3px;padding-left:6px;padding-right:6px;text-align:left;line-height:24px;border:1px solid #FE9B64;background:#fff;}
#ustar2 h3{float:left;font:bold 14px Tahoma;margin:2px 0 0 2px;width:86px;height:22px;color:#fff;background:url(h3_c.gif) no-repeat; line-height:22px; text-align:center;}
.pli .l dt a{font-weight:bold;color:#fff;text-align:center;}
*html #BottomLink li{margin-top:-10px;}
q{quotes:none;}

#ustar{margin:3px 0px;background:#FFECCE;}
#ustar .c,#utool .c{margin:3px;padding:3px 6px;line-height:22px;border:1px solid #FE9B64;background:#fff;}
#ustar h3,#utool h3{float:left;margin:-1px 10px -3px -4px;width:86px;height:22px;color:#fff;background:url(h3_c.gif) no-repeat; line-height:22px; text-align:center;}
#yczzxt004_3 .m{float:left;width:425px; background:#fff;border:1px solid #FE9B64;}
#upic{margin:8px;height:140px;}
#yczzxt004_3 .m .yczzxt004_3_pic{float:left;margin-right:8px;}
#yczzxt004_3 .m .yczzxt004_3_pic img{padding:1px;border:1px solid #999;}
#upic .tttlist {float:left;}
#upic .tttlist li{padding-left:12px;line-height:21px; background:url(li_red.gif) left center no-repeat;}
#upic em{clear:both;display:block;text-align:center; line-height:20px; background:url(upic_em.gif) repeat-x;}
/*第三大栏中部下段*/
#diary{clear:both;margin:8px;}
#diary .h{height:24px;margin-bottom:3px;background:url(diary_h.gif) no-repeat;}
#diary h3{margin-left:4px;font:bold 14px Tahoma; color:#000; line-height:24px;}
#diary dl{float:left;margin-top:-2px!important;width:65px; text-align:right;}
#diary dl *{ vertical-align:middle;}
#diary dt{width:64px;line-height:24px;color:#fff;background:url(d_stepa.gif) center no-repeat;}
#diary dd{line-height:18px;}
#diary .list{float:left;margin-left:8px;}
#diary .list li{padding-left:12px;line-height:23px;width:296px;border-bottom:1px dashed #ddd;background:url(li_red.gif) left center no-repeat;}
#stepa,#stepb,#stepc{clear:both;float:left;margin-top:6px;width:381px;}
#step dt{ }

#yczzxt004_3 .r{float:left;width:242px;border:1px solid #fc9;border-bottom:none;}

#utopic{margin:2px;padding:3px;background:#FFECCE;}
#utopic .c{clear:both;padding:6px;line-height:24px;border:1px solid #FE9B64;border-top:none;background:#fff;}
#utopic .h{height:27px;border:1px solid #FE9B64; border-bottom:none;background:url(user_h_i.gif) repeat-x;}
#utopic .h h3{float:left;margin:0;margin-left:6px;text-align:center;width:100px;}
#utopic .h .on{margin-top:1px;color:#f30;border-left:0;background:url(user_h_ion.gif) repeat-x;}
#utopic li{padding-left:12px;line-height:21px;background:url(li_red.gif) left center no-repeat;}

/*第四大栏*/
#yczzxt004_4{margin:6px auto;border-bottom:1px solid #009999;height:668px;}
#yczzxt004_4 .ha{height:42px; background:url(pro_h_bg.gif) no-repeat;}
#yczzxt004_4 .ca{height:100%;background:url(pro_c_bg.gif) repeat-y;}
#yczzxt004_4 h2{display:inline;float:left;margin:10px 0 0 65px;color:#029899;}
.pli{display:inline;float:left;margin-left:10px;padding:3px;width:460px;background:#E4EDEC;}
.pli .c{border:1px solid #ccc;background:#fff;height:100%; overflow:hidden;}
.pli .l{float:left;width:90px;height:268px;background:url(pro_c_dl.gif) repeat-y;}
.pli .height{height:336px;}
.pli .l dt{width:86px;font-weight:bold;height:24px;color:#fff;background:url(pro_dt.gif) no-repeat; text-align:center; line-height:24px;}
.pli .l dd{padding-left:18px;width:62px;background:url(p_dd_ico.gif) left center #fff6f1 no-repeat;border-left:1px solid #fff;border-bottom:1px solid #fff;line-height:28px;}
.pli .r{float:left;margin:6px 0;}
.pli .pic{float:left;margin-right:8px;}
.pli .pic img{padding:1px;border:1px solid #999;}
.pli .list{float:left;height:120px;width:226px;}
.pli .t .list li{padding-left:12px;line-height:22px;border-bottom:1px dashed #ddd;background:url(li_red.gif) left center no-repeat;}
.pli .r dl{display:block;}
.pli .r h4{float:left;padding-left:15px;width:57px;height:62px;font:bold 16px Tahoma;color:#f60;background:url(pro_r_dt.gif) no-repeat;line-height:62px;}
.pli .r .b{clear:both;height:68px;}
.pli .b .list{float:left;width:280px;height:59px;border:1px solid #e8e8e8;border-left:0;}
.pli .b .list li{ line-height:20px;}
.pli .b .list_jia li{ line-height:20px;}
.pli .b em{float:right; text-align:right;width:80px;margin-right:10px;margin-top:-18px;font-weight:bold;color:#f30;}
.pli .b em a{font-weight:normal;}

#plis{float:left;margin-left:10px;padding:3px;width:460px;height:332px;margin-top:0px;background:#E4EDEC;}
#pcs{margin-top:3px;border:1px solid #ccc;background:#fff;height:265px; overflow:hidden;}
#pcs .t{height:30px;}
#pcs .t li{float:left;margin-left:1px;margin-top:1px;height:28px;}
#pcs .t li a{display:block;width:75px;height:22px;font:bold 14px Tahoma;color:#f60;background:#fff6f1;text-align:center; line-height:22px;}
#pcs .t li a.on{height:28px;background:url(pro_pc_on.gif) center #f60 no-repeat;}
#pcs .t li a.on:link,#pcs .t li a.on:visited{color:#fff;}
#pcs .b{margin:6px;;}
#pcs .plist{width:260px;}
#pcs .falist{width:260px;}
#pcs .plist li{float:left;width:128px;}
#pcs .falist li{float:left;padding-left:12px;width:238px;line-height:20px;background:url(li_black.gif) left center no-repeat;}
#pcs .plist img{padding:1px;border:1px solid #999;width:120px;height:84px;line-height:20px;}
#PAD_2{float:right;margin-top:-90px!important;margin-top:-180px}
*+html #PAD_2{margin-top:-180px!important;}
#pcs .tlist li{float:left;width:390px;padding-left:1px;line-height:20px;}

/*第五大栏*/
#yczzxt004_5{margin:6px auto;border-bottom:1px solid #679A35;height:510px;}
#yczzxt004_5 .l,#yczzxt004_5 .m,#yczzxt004_5 .r{height:470px;}
#yczzxt004_5 .la{float:left;width:716px;background:url(life_c_bg.gif) repeat-y;}
#yczzxt004_5 .ha{height:42px;width:716px;background:url(life_h_bg.gif) no-repeat;}
#yczzxt004_5 h2{display:inline;float:left;margin:10px 0 0 65px;color:#649900;}
#yczzxt004_5 .l{display:inline;clear:both;float:left;margin:0 3px 0 10px;width:260px;}
#yczzxt004_5 .l .h{height:27px;border:1px solid #679A35; background:url(life_h_i.gif) repeat-x;}
#yczzxt004_5_1,#food{padding:3px;background:#D5E6C4;}
#yczzxt004_5_1 .c,#food .c{padding:1px;border:1px solid #679A35; border-top:none;background:#fff; line-height:20px;}
#yczzxt004_5_1 .yczzxt004_5_pic,#food .yczzxt004_5_pic{margin:0 2px;}
#yczzxt004_5 .l em{ display:block;font:bold 14px Tahoma; line-height:28px; text-align:center;}
#yczzxt004_5 .l .list{margin:6px;}
#yczzxt004_5 .l .list li{padding-left:12px;line-height:21px;background:url(li_black.gif) left center no-repeat;}
#yczzxt004_5 .l h3,#yczzxt004_5 .r h3{color:#669700;}

#yczzxt004_5 .m{float:left;width:425px; background:#fff;border:1px solid #679A35;}
#bride,#yczzxt004_5_2,#pet{margin:8px;}
#yczzxt004_5 .m .h{height:30px;color:#fff;background:url(life_m_tbg.gif) no-repeat;}
#yczzxt004_5 .m h3{margin-left:25px;}
#yczzxt004_5 .m em{ display:block; text-align:center; line-height:20px;}
#bride .plist li{float:left;margin:0 3px;}
#bride .plist img{padding:1px;border:1px solid #999;width:88px;height:120px;}
#bride .yczzxt004_5_pic img{width:200px;height:120px;}
#bride .tlist{clear:both;height:40px;}
#bride .tlist li{float:left;width:190px;padding-left:12px;line-height:20px;background:url(li_black.gif) left center no-repeat;}
#yczzxt004_5_2 .yczzxt004_5_pic img{padding:1px;border:1px solid #999;}
#yczzxt004_5_2 .plist{height:92px;}
#yczzxt004_5_2 .plist li{float:left;margin:3px;}
#yczzxt004_5_2 .tlist li{float:left;width:390px;padding-left:6px;line-height:20px;}
#yczzxt004_5_2 .plist img{padding:1px;border:1px solid #999;width:125px;height:68px;}
#pet{clear:both;}
#pet .yczzxt004_5_pic{float:left;margin-right:8px;}
#pet .yczzxt004_5_pic em{font:bold 14px Tahoma;}
#pet .yczzxt004_5_pic img{padding:1px;border:1px solid #999;width:200px;height:215px;}
#pet .plist li{float:left;margin:0 3px;}
#pet .plist img{padding:1px;border:1px solid #999;width:86px;height:93px;}

#yczzxt004_5 .r{float:left;width:242px;height:100%; overflow:hidden;border:1px solid #679A35;border-bottom:none;}
#yczzxt004_5_3{margin:6px;padding:3px;background:#D5E6C4;}
#yczzxt004_5_3 .c{clear:both;padding:6px;line-height:24px;border:1px solid #679A35;border-top:none;background:#fff;}
#yczzxt004_5_3 .h{height:27px;border:1px solid #679A35; border-bottom:none;background:url(life_h_i.gif) repeat-x;}
#yczzxt004_5_3 li{padding-left:12px;line-height:20px;background:url(li_green.gif) left center no-repeat;}

/*友链*/
#yczzxt004_links{margin:3px auto;background:#FFECCE;}
#yczzxt004_links .c{margin:3px;padding:3px 6px;line-height:24px;border:1px solid #FE9B64;background:#fff;}
#yczzxt004_links h3{float:left;margin:-1px 15px -3px -4px;width:86px;height:22px;color:#fff;background:url(h3_c.gif) no-repeat; line-height:22px; text-align:center;font:bold 14px Tahoma;}

/*底部*/
#yczzxt004_footer{border-top:4px solid #f30;padding:5px 0; background:#efefef; text-align:center;line-height:18px;}

/******************************************
以下为yczzxt004模板，列表页、内容页部份
******************************************/

#main_body {
margin:0 auto;
width:960px;
background-color:#FFFFFF;
text-align:left;
background:url(bencandy/border.gif);
}
#news_entry {
width:638px;
float:left;
text-align:center;
border:0px solid #000000;
}

#news_right_panel {
width:312px;
float:left;
text-align:center;
}

#hotnews {
width:308px;
margin:0 auto;
}
#land {
width:308px;
margin:0 auto;
}

.clear{margin:0 auto; clear: both; font-size:1px; width:1px; height:1px;}

.hemline{margin:0 auto; width:960px; clear:both; font-size:1px; overflow:hidden; height:1px; background:url(bencandy/hemline.gif);}

/* 右侧栏目标题栏样式 */
.rightTitle{
margin:0 auto; width:300px; height:24px; background-color:#CCCCCC; background:url(bencandy/00_03_1.gif) left no-repeat;
}
.rightTitle h2{
float:left; width:100px; height:24px; color:#FFFFFF; line-height:24px; font-size: 14px; font-weight: bold; text-decoration:none;
}
.rightTitle h2 a:link{
color: #FFFFFF; text-decoration:none;
}
.rightTitle h2 a:visited{
color: #FFFFFF; text-decoration:none;
}
.rightTitle h2 a:hover {
color: #FFFFFF; text-decoration:underline;
}
.rightTitle ul.menuList{
width:199px; height:20px; float: right; text-align:right; background-color:#ccc;
}
.rightTitle ul.menuList li {
height:20px; line-height:20px; font-size: 12px; font-style: normal; font-weight: normal; font-variant: normal;text-transform: none;color: #FFFFFF; text-decoration: none; display:inline;
}

/* 右侧栏目列表样式 */
.rightContent .newsList {
margin:0 auto; width:299px;
}
.rightContent .newsList ul{
margin:0 auto; width:299px; padding:4px 0 10px 0; background-color:#FFFFFF;
}
.rightContent .newsList ul li {
float:right; width:269px; line-height:22px; padding-left:15px; text-align:left; list-style-type:none; overflow:hidden; background:url(bencandy/00_37.gif) left 8px no-repeat;
}
.rightContent .newsList ul li span {
font-size: 12px; line-height: 28px;letter-spacing:1px;
}
.rightContent .newsList ul li span a{
color: #000000;
}
.rightContent .newsList ul li span a:hover{
color: #990000;
text-decoration: underline;
}

/* 新闻内容样式 */
#news_content {
margin:0 auto;
width:604px;
text-align:left;
}

/* 新闻标题样式 */
#news_title {
text-align:center;
}
#news_title h1 {
color: #000000;
font-size:24px;
font-weight: bold;
line-height:60px;
}
#news_title h2 {
font-size:16px;
line-height:40px;
}

/* 相关作者/来源样式 */
#news_quarry_and_author {
margin:0 auto;
font-size: 12px;
color: #666666;
height:30px;
text-align:center;
text-decoration: none;
line-height: 24px;
word-spacing: normal;
letter-spacing: normal;
}
#news_quarry_and_author a:link {
font-size: 12px;
color: #990000;
text-decoration: none;
font-weight: normal;
}

/* 内容主体样式 */
#news_body {
margin:0 auto;
font-size: 14px;
color: #000000;
text-decoration: none;
line-height: 24px;
word-spacing: normal;
letter-spacing: 1px;
text-indent: 30px;
}
#news_body a {
color: #000099;
text-decoration: underline;
}
#news_body a:hover{
color: #990000;
text-decoration: underline;
}

/* 返回首页的链接样式 */
#gotoHome {
font-size: 14px;
color: #000000;
text-decoration: none;
text-align:center;
line-height: 24px;
word-spacing: normal;
letter-spacing: 1px;
}
#gotoHome img {
vertical-align:middle;
}

/* 评论表头 */
.related_news {
margin:0px auto;
width:604px;
}
.related_news_header {
margin-top:4px;
width:604px;
height:24px;
background:url(bencandy/line03.gif) left top repeat-x;
}
.related_news_header a:link {
color:#fff;
}
.related_news_header a:visited {
color:#fff;
}
#related_news_header_1.active, #related_news_header_2.active, #related_news_header_3.active {
height:24px;
background:url(bencandy/corner.gif) bottom center no-repeat;
}
#related_news_header_1.active h3, #related_news_header_2.active h3, #related_news_header_3.active h3 {
margin-top:0;
height:20px;
float:left;
padding:0 4px 0 4px;
color: #fff;
font-size: 14px;
line-height:20px;
font-weight: bold;
background:url(bencandy/line.gif) left repeat-x;
text-decoration:none;
}

#related_news_header_1.inactive h3, #related_news_header_2.inactive h3, #related_news_header_3.inactive h3 {
height:20px;
float:left;
padding:0 4px 0 4px;
color: #fff;
line-height:20px;
font-size: 14px;
font-weight: bold;
background:url(bencandy/line02.gif) left repeat-x;
text-decoration:none;
}

#related_news_list_1 {
display:block;
}

.related_news_list {
width:604px;
text-align:left;
}

/* 最新、热文章 */
#news_rank {
width:308px;
}

.news_rank_header {
margin:0 auto; width:300px; height:24px;   background:url(bencandy/line03.gif) left top repeat-x;
}
.news_rank_header a:link {
color:#fff;
}
.news_rank_header a:visited {
color:#fff;
}
#news_rank_header_1, #news_rank_header_2 {
width:100px;
height:24px;
}
#news_rank_header_1.active h3, #news_rank_header_2.active h3 {
width:100px;
height:24px;
color: #fff;
font-size: 14px;
line-height:20px;
font-weight: bold;
text-decoration:none;
background:url(bencandy/00_03_1.gif) left no-repeat;
}
#news_rank_header_1.inactive h3, #news_rank_header_2.inactive h3{
width:100px;
height:24px;
color: #fff;
line-height:20px;
font-size: 14px;
font-weight: bold;
text-decoration:none;
background:url(bencandy/00_03_2.gif) left repeat-x;
}

#news_rank_list_1 {
display:block;
}
#news_rank_list_2 {
display:none;
}
#news_rank_list_1, #news_rank_list_2 {
margin:0 auto; width:299px; background-color:#FFFFFF; border:0px solid #000;
}
#news_rank_list_1 ul, #news_rank_list_2 ul {
float:left;
}
#news_rank_list_1 ul li , #news_rank_list_2 ul li {
float:right; width:269px; line-height:22px; padding-left:15px; text-align:left; list-style-type:none; overflow:hidden; background:url(bencandy/00_37.gif) left 8px no-repeat;
}