/* 网站链接总的css定义:可定义内容为链接字体颜色、样式等 */
a{text-decoration: underline;} /* 链接无下划线,有为underline */ 
a:link {color: #134068;} /* 未访问的链接 */
a:visited {color: #333333;} /* 已访问的链接 */
a:hover{color: #ff6600;} /* 鼠标在链接上 */ 
a:active {color: #134068;} /* 点击激活链接 */
/* 顶部频道文字链接的css定义－－将顶部频道文字链接与网站链接总的css定义分开，以后可以制作深底浅字的格式，如果要保持原来的设计样式，将此定义内容删除或定义成与网站链接总的css相同即可。调用代码为<a class='channel' ***>***</a> */
a.channel:link {color: #ffffff;}
a.channel:visited {color: #ffffff;}
a.channel:hover{color: #ffff00;}
a.channel:active {color: #ffffff;}
/* 顶部当前频道文字链接的css定义－－调用代码为<a class='channel2' ***>***</a> */
a.channel2:link {color: #ffff00;}
a.channel2:visited {color: #ffff00;}
a.channel2:hover{color: #ff6600;}
a.channel2:active {color: #ffff00;}
/* 底部版权信息文字链接的css定义－－与顶部频道文字链接定义的想法相同。可设置与顶部频道文字链接定义不同的文字颜色，网页内定义以预留。调用代码为<a class='bottom' ***>***</a> */
a.bottom:link {color: #333333;}
a.bottom:visited {color: #333333;}
a.bottom:hover{color: #ff3300;}
a.bottom:active {color: #333333;}
/* 文章栏目标题文字链接的css定义－－可设置与顶部频道文字链接定义不同的文字颜色，网页内定义以预留。要相同可不设置。调用代码为<a class='class' ***>***</a> */
a.class:link {color: #ffffff;}
a.class:visited {color: #ffffff;}
a.class:hover{color: #ff0000;}
a.class:active {color: #ffffff;}

/* body的css定义:对应css中“body”，可定义内容为网页字体颜色、背景、浏览器边框等 */
body
/* 单元格的css定义:对应css中的“td”，这里为总的表格定义，为一般表格的的单元格风格设置，可定义内容为背景、字体颜色、样式等 */
td
{
	font-family:"宋体";
	font-size: 9pt;
	line-height: 150%;
	font-weight: normal;
}
/* 文本框的css定义:对应css中的“input”，这里为文本框的风格设置，可定义内容为背景、字体、颜色、边框等 */
/* 按钮的css定义:对应css中的“button”，这里为按钮的风格设置，可定义内容为背景、字体、颜色、边框等 */
button
{
font-size: 9pt;height: 20px;
}
/* 下拉列表框的css定义:对应css中的“select”，这里为下拉列表框的风格设置，可定义内容为背景、字体、颜色、边框等 */
select
{
font-size: 9pt;height: 20px;
}
/* 顶部用户登录文字链接的css定义 */
.top_userlogin
{
color: #037fa8;
}

/* ==频道通用表格css定义开始== */
.channel_border /* 灰色表格边框背景颜色定义(950) */
{
border: 1px solid #cccccc;
}
.channel_title /* 标题背景颜色定义(950) */
{
background: #cccccc;color: #037fa8;height: 27;text-align: center;font-weight:bold;
}
.channel_tdbg /* 表格背景颜色定义(950) */
{
background:#fafafa;line-height: 120%;
}
.channel_pager /* 分页表格背景颜色定义(950) */
{
background:#fafafa;line-height: 120%;
}

　　/* --评论显示页的css定义开始-- */
.comment_border /* 蓝色表格边框背景颜色定义(950) */
{
border: 1px solid #0069B0;
}
.comment_title /* 标题背景颜色定义(950) */
{
background:#0069B0;color: #ffffff;font-weight: normal;height: 25;
}
.comment_tdbg1 /* 表格背景颜色定义(950) */
{
background:#ffffff;line-height: 100%;
}
.comment_tdbg2 /* 留言显示1px表格背景颜色定义 */
{
background:#fafafa;
}
　　/* --评论显示页的css定义结束-- */
/* ==频道通用表格css定义结束== */ 

/* ==简短标题文字的css定义开始== */
/* [图文]简短标题文字的css定义 */
.s_headline1
{
color: blue;
}
/* [组图]简短标题文字的css定义 */
.s_headline2
{
color: #ff6600;
}
/* [推荐]简短标题文字的css定义 */
.s_headline3
{
color: green;
}
/* [注意]简短标题文字的css定义 */
.s_headline4
{
color: red;
}
/* ==简短标题文字的css定义开始== */

/* ==top.asp中的css定义开始== */
.top_tdbgall /* 顶部表格总背景颜色定义 */
{
width: 760;background:#ffffff;
}
.top_top
{
background:#0089f7;height: 2;
}
.top_channel /* 频道表格背景、文字颜色定义 */
{
background:#0089f7;color:#3ab1f5!important;text-align: right;border-top: 1px solid #ffffff;border-bottom: 1px solid #ffffff;
}
.top_announce /* 公告表格背景、文字颜色定义 */
{
background:url(/Skin/blue/top_nav_menu.gif);color: #0560a6;height: 30;
}
.top_nav_menu /* 导航栏表格背景、文字颜色定义 */
{
	color: #ffffff;
	height: 22;
	background-image: url(/Skin/ocean/menu_bg2.gif);
	padding-left: 33px;

}
.top_path /* 您现在的位置表格背景、文字颜色定义 */
{
width: 760;background:#ffffff;height: 30;
}
.top_userlogin /* 顶部用户登录文字链接的css定义 */
{
color: #037fa8
}
/* ==top.asp中的css定义结束== */

/* ==网页中部中的css定义开始== */
.center_tdbgall /* 中部表格总背景颜色定义 */
{
background:#ffffff;
width:770px;
}
　　/* --网页中部左栏的css定义开始-- */
.left_tdbgall /* 左栏表格总背景颜色定义 */
{
background:#ffffff;
}
.left_title /* 左栏标题表格背景、文字颜色定义 */
{
	font-weight:bold;
	color: ffffff;
	height: 28px;
	padding-left:20px;
	text-align: left;
	background-image: url(/Skin/ocean/right_t.gif);
	width: 182px;
}
.left_tdbg1 /* 左栏内容表格背景、文字颜色定义 */
{
	padding: 5px;	background-color: #e6f5ff;	border-width: 1px;
	border-top-style: none;	border-bottom-style: none;	border-color: #a4c6fc;border-right-style: solid;border-left-style: solid;
}
.left_tdbg2 /* 左栏底部表格背景、文字颜色定义 */
{
	height: 10px;
	background-image: url(/Skin/ocean/tdbg_bottom.gif);
	background-repeat: no-repeat;
}
.right_title_bs06 /* 右栏标题表格背景、文字颜色定义 */
{
	font-weight:bold;
	color: ffffff;
	height: 28px;
	padding-left:20px;
	text-align: left;
	background-image: url(/Skin/ocean/right_t.gif);
}
.right_title /* 左栏标题表格背景、文字颜色定义 */
{
background:url(/Skin/blue/right_title.gif);font-weight:bold;color: ffffff;height: 28;width:180;padding-left:40;text-align: left;
}
　　/* --网页中部左栏的css定义结束-- */
　　/* --网页中部中栏的css定义开始-- */
.main_tdbgall /* 中栏表格总背景颜色定义 */
{
width: 572;background:#ffffff;
}
.main_shadow /* 中栏内容间隔表格背景颜色定义(575) */
{
height: 4;
}
.main_announce /* 中栏公告表格背景、文字颜色定义 */
{
color: 037fa8;height: 25;background:#f9f9f9;border: 1px solid #d2d3d9;
}
.main_search /* 中栏搜索表格背景、文字颜色定义 */
{
color: 037fa8;height: 25px;border: 1px solid #d2d3d9;background:#f9f9f9;
}
.main_top /* 中栏最新推荐表格背景颜色定义 */
{
background:url(/Skin/blue/main_top.gif);height: 187;
}
.main_title_760i /* 网站首页中栏标题表格背景、文字颜色定义(950) */
{
color: ffffff;
background-image: url(/Skin/ocean/main_bs.gif);
border-right: 1px solid #1c65be;
text-align: left;padding-left:30;height: 27;

}
.main_tdbg_760i /* 网站首页中栏内容表格背景、文字颜色定义(950) */
{
border: 1px solid #d2d3d9;line-height: 150%;text-align: left;padding-left:5;padding-right:5;
}
.main_title_575 /* 中栏标题表格背景、文字颜色定义(575) */
{
    font-weight: bold;
	color: #333333;
	background-image: url(/Skin/sxiweb/760.gif);
	height: 30px;
	padding-left: 30px;
	BORDER: #cccccc 1px solid;
}
.main_title_bs06 /* 中栏标题表格背景、文字颜色定义(bs06) */
{
	color: ffffff;
	text-align: left;
	padding-left:30px;
	height: 27px;
	background-image: url(/Skin/ocean/main_bs.gif);
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #1c65be;
	font-weight: bold;
}
.main_tdbg_bsd06 /* 中栏内容表格背景、文字颜色定义(bsd06) */
{
	color: ffffff;	height: 4px;	background-image: url(/Skin/ocean/main_02.gif);
}
.main_tdbg_bs06 /* 中栏内容表格背景、文字颜色定义(bs06) */
{
	line-height: 150%;
	text-align: left;
	padding-left:5;
	padding-right:5;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #aec6e8;
	border-bottom-color: #aec6e8;
	border-left-color: #aec6e8;
	background-image: url(/Skin/ocean/main_bg3.gif);
	background-color: #ffffff;
}
.main2_tdbg_bs06 /* 中栏内容表格背景、文字颜色定义(bs06) */
{
	line-height: 150%;
	text-align: left;
	padding-left:5;
	padding-right:5;
	border-left-width: 1px;
	border-left-style: dashed;
	border-left-color: #aec6e8;
	background-image: url(/Skin/ocean/main_bg.gif);
	background-color: #ffffff;
}

.main_tdbg_575 /* 中栏内容表格背景、文字颜色定义(575) */
{
border: 1px solid #d2d3d9;line-height: 150%;text-align: left;padding-left:5;padding-right:5;
}
.main_title_282i,.main_title_282 /* 栏目文章列表标题表格背景、文字颜色定义(282) */
{
background:url(/Skin/ocean/main_bs.gif);color: ffffff;height: 27;
padding-left:30;
color: ffffff;
text-align: left;
border-right: 1px solid #1c65be;
font-weight: bold;
}
.main_tdbg_282i /* 栏目文章列表内容表格背景、文字颜色定义(282) */
{
border: 1px solid #d2d3d9;line-height: 150%;text-align: left;padding-left:5;padding-right:5;
}

.main_tdbg_282 /* 栏目文章列表内容表格背景、文字颜色定义(282) */
{
border: 1px solid #d2d3d9;line-height: 150%;text-align: left;padding-left:5;padding-right:5;
}
.listbg /* --栏目文章列表内容间隔颜色的定义1-- */
{
font-color:#134068;line-height: 22px;
}
.listbg2 /* --栏目文章列表内容间隔颜色的定义2-- */
{
font-color:#134068;line-height: 22px;
}
　　/* --网页中部中栏的css定义结束-- */
　　/* --文章显示页的css定义开始-- */

.main_articletitle /* 主标题文字颜色定义 */
{
color: ff0000;font-weight:bold;font-size: 18;line-height: 150%;
}
.main_articlesubheading /* 副标题文字颜色定义 */
{
color: 037fa8;font-weight:bold;line-height: 150%;
}
.main_title_760 /* 标题导航表格背景、文字颜色定义(950) */
{

background:url(/Skin/ocean/main_bs1.gif);border: 1px solid #d2d3d9;height: 28;color: ffffff;
}
.main_tdbg_760 /* 内容表格背景、文字颜色定义(950) */
{
border: 1px solid #d2d3d9;padding: 8;line-height: normal;
}
.article_tdbgall /* 责编等表格背景、文字颜色定义(950) */
{
background:#f5f5f5;
}

　　/* --文章显示页的css定义结束-- */
　　/* --留言频道css定义开始-- */
/* 留言栏目标题文字链接的css定义－－调用代码为<a class='guest' ***>***</a> */
a.guest:link {color: #333333;}
a.guest:visited {color: #333333;}
a.guest:hover{color: #ff0000;}
a.guest:active {color: #333333;}

.Guest_title_760 /* 标题导航表格背景、文字颜色定义(950) */
{
background:url(/Skin/sxiweb/760.gif);border: 1px solid #D2D3D9;padding-left:5;height: 27;color: 333333;
}
.guest_tdbg_760 /* 内容表格背景、文字颜色定义(950) */
{
border: 1px solid #2099D6;padding: 8;
}
.guest_border /* 蓝色表格边框背景颜色定义(950) */
{
border: 1px solid #0069B0;
}
.guest_title /* 标题背景颜色定义(950) */
{
background:#2099D6;color: #ffffff;font-weight: normal;height: 25;
}
.guest_tdbg /* 表格背景颜色定义(950) */
{
background:#fafafa;line-height: 120%;
}
.guest_tdbg_1px /* 留言显示1px表格背景颜色定义 */
{
background:#d2d3d9;
}
.guest_border2 /* 回复表格虚线边框背景颜色定义(950) */
{
border: 1px dashed #97d2df;background:#e8f5f8;color: #006633;
}
.guest_replyadmin /* 管理员回复文字背景颜色定义(950) */
{
color: #ff0000;
}
.guest_replyuser /* 用户回复文字背景颜色定义(950) */
{
color: #449ae8;
}
　　/* --留言频道css定义结束-- */
　　/* --商城的css定义开始-- */
.shop_border /* 蓝色表格边框背景颜色定义(950) */
{
border: 1px solid #1C65BE;
}
.shop_border3 /* 灰色表格边框背景颜色定义(950) */
{
border: 1px solid #cccccc;
}
.shop_title /* 标题背景颜色定义(950) */
{
    font-weight: bold;
	color: #ffffff;
	background-image: url(/Skin/ocean/main_bs1.gif);
	height: 27px;
	padding-left: 30px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #1c65be;
}
.shop_tdbg /* 表格背景颜色定义(950) */
{
background:#fafafa;line-height: 120%;
}
.shop_tdbg2 /* 表格背景颜色定义2 */
{
background:#f5f5f5;line-height: 120%;
}
.shop_tdbg3 /* 表格背景颜色定义3 */
{
background:#ffffff;line-height: 120%;
}
.shop_tdbg4 /* 表格背景颜色定义4 */
{
background:#e1f4ee;line-height: 120%;
}

　　/* --商城的css定义结束-- */
/* ==网页中部中的css定义结束== */

/* ==bottom.asp中的css定义开始== */
.bottom_tdbgall /* 底部表格总背景颜色定义 */
{
width: 760;background:#ffffff;
}
.bottom_adminlogo /* 管理信息表格背景、文字颜色定义 */
{
background:#0089f7;color:#ffffff;
}
.bottom_copyright /* 版权信息表格背景、文字颜色定义 */
{
background:#ffffff;color:#000000;
}
/* ==bottom.asp中的css定义结束== */

/* ==自选风格中的css定义结束== */
.menu
{
background-color: #cccccc;width:97%;border: 1px;
}
.menubody
{
background-color: #ffffff;
}
/* ==自选风格中的css定义结束== */
.channel_font /* 搜索等特殊文字颜色定义 */
{
color: red;
}
/* --评论显示页的css定义开始-- */ 
.guest_font /* 隐藏、用户等特殊文字颜色定义 */
{
color: green;
}
/* --评论显示页css定义结束-- */

/* 站内链接文字颜色定义 */
a.channel_keylink{text-decoration: underline;}
a.channel_keylink:link {color: blue;}
a.channel_keylink:visited {color: blue;}
a.channel_keylink:hover{color: #ff0000;}
a.channel_keylink:active {color: blue;}

/* --用户控制css定义开始-- */
.user_left /*左区块定义*/
{
background:#f3f3f3;width:170px;padding-left: 4px;border-left-width: 2px;border-left-style: solid;border-left-color: #ffffff;padding-right: 4px;
}
.user_box/*左区块内标题栏定义*/
{
border: 1px solid #bfbfbf;background-color: #ffffff;border-collapse:15;
}
.user_righttitle {
background-color: #f3f3f3;padding-top: 5px;padding-right: 5px;padding-bottom: 1px;padding-left: 5px;
border-top-width: 2px;border-right-width: 2px;border-bottom-width: 1px;border-left-width: 2px;
border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;
border-top-color: #ffffff;border-right-color: #ffffff;border-bottom-color: #bfbfbf;border-left-color: #ffffff;
}
.user_line {
line-height: 1px;background-image: url(/Skin/ocean/line.gif);
}
.user_toolstop/*左区块内标题栏定义*/
{
line-height: 28px;font-size: 12px;font-weight: bold;color: #666666;padding-left: 10px;letter-spacing: 4pt;
}
.user_toolsbot/*左区块内内容定义*/
{
line-height: 25px;font-size: 12px;color: #666666;border-right-width: 4px;border-right-style: solid;border-right-color: #ffffff;
}
.user_toolspoint/*区块内箭头栏定义*/
{
padding-left: 6px;
}

/*用户控制面板右*/
.user_right {
background-color: #ffffff;padding-right: 2px;padding-left: 6px;width:572px;
}
.border1
{
border: 1px solid #bfbfbf;
}

.title
{
background:#449ae8;color: #ffffff;font-weight: normal;
}
.border
{
border: 1px solid #449ae8;
}
.tdbg
{
background:#f0f0f0;line-height: 120%;
}
.tdbgmouseover{
background:#bfdfff;line-height: 120%;
}
.tdbg2
{
background:#e0eef5;line-height: 120%;
}
.tdbg5
{
background:#e0eef5;line-height: 120%;
}
.title5
{
width:80px;background:url('../user/images/titlebg2.gif');line-height: 120%;padding-top:2px;cursor:hand;
}
.title6
{
width:80px;background:url('../user/images/titlebg1.gif');color: #ffffff;font-weight: normal;padding-top:2px;cursor:hand;
}
.button1
{
width:90px;
}
.show_page {
text-align: center;
}


/* 固定排课表格表格的css定义*/
.date_border
{
border: 1px solid ;
}
.date_title
{
background:#449ae8;color: #ffffff;font-weight: normal;
}
.date_tdbg
{
background:#449ae8;color: #ffffff;font-weight: normal;
}
.style2
{
font-size: 10px;
}
.style3
{
font-size: 12px;
}

/* ==rss连接框定义== */
#popitmenu {
    border-right: black 1px solid; border-top: black 1px solid; z-index: 100; visibility: hidden; font: 12px/18px verdana; border-left: black 1px solid; border-bottom: black 1px solid; position: absolute; background-color: white
}
#popitmenu a {
    display: block; padding-left: 6px; color: black; text-decoration: none;
}
#popitmenu a:hover {
    background-color: #ccff9d;
}

/* ==用户登录框定义== */
.userbox{
color:#0A0813;
}
#userlogined
{
    padding-left:10;text-align: left;
}
#userlogin input{height:20px;}
#userctrl
{
    text-align: center;
}
#usermessage
{
    padding-left:10;text-align: left;
}
.userlog{
color:#000000;
}
.havemessage
{
    background-color: #ccff9d;
}
.havemessaged
{
    background-color: #cc0000;
}
.bloglist  /* 聚合空间列表定义 */
{
width: 100%;text-align: center;
}
.bloglist_image
{
text-align: center;
}
.bloglist_intro
{
text-align: center;
}
#showbloglist_more
{
text-align: right;padding-right:10;
}
/* ==供求信息div按钮定义开始== */
#supply{
margin:0px;
padding:0px;
color:#fff;
}
.supplybut,.supplybutover{
margin:0px;
padding:1px;
line-height:25px;
border-top: 1px solid #d2d3d9;border-right: 1px solid #d2d3d9;border-left: 1px solid #d2d3d9;text-align: left;padding-left:30;padding-right:15px;
display: block;
float:left;
margin-right:8px;
cursor:hand;
}
.supplybut{
background:url(/Skin/blue/main_title_575.gif);
}
.supplybutover{
background:url(/Skin/blue/main_title_282.gif);
}
/* ==供求信息div按钮定义开始== */
.right_tdbgbs06 {
padding: 5px;	background-color: #e6f5ff;	border-width: 1px;
	border-top-style: none;	border-bottom-style: none;	border-color: #a4c6fc;border-right-style: solid;border-left-style: solid;
}
.right_tdbg2 {
	background-image: url(/Skin/ocean/tdbg_bottom.gif);
	background-repeat: no-repeat;
	height: 10px;
}
.main_title_bsf {
	font-weight: bold;
	color: #ffffff;
	background-image: url(/Skin/ocean/main_bs1.gif);
	height: 27px;
	padding-left: 30px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #1c65be;
}
.mainblinks {
	background-image: url(/Skin/ocean/links_02.gif);
	height: 27px;
	font-weight: bold;
	color: #ffffff;
}
.menu_bottombg {
	color: #ffffff;
	background-image: url(/Skin/ocean/menu_bottombg.gif);
	height: 31px;
}
.bottom_bg {
	background-image: url(/Skin/ocean/bottom_bg.gif);
}
.showa {
	color: #aed2fe;
}
.menu_s {
	color: #ffffff;
	background-image: url(/Skin/ocean/menu_bg.jpg);
	height: 26px;
}
/* --公告显示文字(滚动条)的css定义开始-- */
.AnnounceBody2 {color:#ffffff;}
a.AnnounceBody2:link {color: #ffffff;}
a.AnnounceBody2:visited {color: #ffffff;}
a.AnnounceBody2:hover{color: #ffff00;}
a.AnnounceBody2:active {color: #ffffff;}
/* --公告显示文字(滚动框)的css定义开始-- */
.AnnounceBody1 {color:#333;}
a.AnnounceBody1:link {color: #333333;}
a.AnnounceBody1:visited {color: #333333;}
a.AnnounceBody1:hover{color: #ff0000;}
a.AnnounceBody1:active {color: #333333;}
/* --公告显示文字(滚动框、滚动条)的css定义结束-- */
hr
{
height:1px;
color:#5575B0；
}
/* 自定义列表标签链接文字颜色定义 */
a.t1{text-decoration: underline;}
a.t1:link {color: F02E0F;FONT-SIZE: 18px;face="黑体"}
a.t1:visited {color: F02E0F;FONT-SIZE: 18px;face="黑体"}
a.t1:hover{color: 000000;FONT-SIZE: 18px;face="黑体";text-decoration: underline;}
a.t1:active {color: ff0000;FONT-SIZE: 18px;face="黑体"}
/* 自定义列表标签链接文字颜色定义 */
a.a{text-decoration: underline;}
a.a:link {color: 255AA4;FONT-SIZE: 14.8px;}
a.a:visited {color: 007CDE;FONT-SIZE: 14.8px;}
a.a:hover{color: ff0000;FONT-SIZE: 14.8px;}
a.a:active {color: 007CDE;FONT-SIZE: 14.8px;}
.b /* --自定义列表标签中偶数表格行背景颜色定义-- */
{
background:url(/Skin/hz315/xx.gif);height: 24;font-size:14.8px;color: #255AA4;
}

.c /* --自定义列表标签中偶数表格行背景颜色定义-- */
{
background:url(/Skin/hz315/xx.gif);height: 24;font-size:14.8px;color: #255AA4;
}
.pic1 /*文章栏目图片边框 */
{
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #ffffff;
	border-right-color: #ffffff;
	border-bottom-color: #ffffff;
	border-left-color: #ffffff; 
filter:progid:dximagetransform.microsoft.glow(color=#000000,strength=1);
}*{margin:0;}
body {
         font-family: Arial, Helvetica, sans-serif, "宋体";
	font-size: 12px;
	margin: 0;
	}
table {
font-size:12px;
}
.index_new {
float:right;
width:405px;
font-size:12px;
}
.index_new .pic_art_title a{color:#000;font-size:16px;font-family:"黑体";line-height:30px}
.index_new .pic_art_img{float:left;padding-top:5px;width:120px;height:72px;}
.index_new .pic_art_content,.index_new .pic_art_title{float:right;width:280px;line-height:20px}
a{text-decoration: none;} /* 链接无下划线,有为underline */ 
a:link {color: #3a3a3a;} /* 未访问的链接 */
a:visited {color: #3a3a3a;} /* 已访问的链接 */
a:hover{COLOR: #e04216;text-decoration:underline;} /* 鼠标在链接上 */ 
a:active {color: #3a3a3a;} /* 点击激活链接 */
.top {
margin-top:3px;
background-image:url(/Skin/syku/title_bg.jpg);
width:950px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;BORDER-bottom: #7aaddf 1px solid;
height:25px;
}
.top_main {
width:950px;
}
.top_left {
color:#333332;
padding-top:2px;
padding-left:5px;
width:450px;
float:left;
font-size:12px;
text-align:justify;
letter-spacing:1px;
}
.top_right {
padding-top:5px;
padding-right:10px;
width:480px;
float:right;
text-align:right;
}
.fast {
padding-left:10px;
}
.fast_sub {
width:70px;
}

.top_logo {
margin-top:5px;
width:950px;
height:75px;
}	
.top_logo_left {
width:210px;
float:left;
text-align:justify;
}
.top_logo_right {
width:740px;
float:right;
text-align:right;
margin-top:3px;
}
.top_logo_right_l {
float:left;
width:480px;
}
.top_logo_right_r {
float:right;
width:240px;
height:60px;
BORDER-RIGHT: #c4d8ed 1px solid; BORDER-TOP: #c4d8ed 1px solid; 
BORDER-left: #c4d8ed 1px solid; BORDER-bottom: #c4d8ed 1px solid;
background: #e4edf9; 
line-height:20px;
padding-right:10px;
}
.top_daohang {
width:950px;
margin-top:0px;
}
#nav {
width:948px;
line-height:30px;
list-style-type: none; 
background-image:url(/Skin/syku/menu_back.gif);
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  
}
#nav a {
display: block; width: 105px; text-align:center;
letter-spacing:2px;
}
#nav a:link {
color:#133f8e; text-decoration:none;
}
#nav a:visited {
color:#133f8e;text-decoration:none;
}
#nav a:hover {
color:#133f8e;text-decoration:underline;
}
#nav li {
float: left; width: 105px; 
background-image:url(/Skin/syku/menu_back.gif);
}
.cur {
float: left; width: 105px; 
background-image:url(/Skin/syku/menu_back_cur.gif);
}
#nav .cur a {
color:#000000; 
display: block; width: 105px; text-align:center;
letter-spacing:2px;
font-size:14px;
font-weight:bold;
} 
#nav .cur a:link {
color:#000000; text-decoration:none;
}
#nav .cur a:visited {
color:#000000; text-decoration:none;
}
#nav .cur a:hover {
color:#000000;text-decoration:underline;
}
.last {
float: left; width: 105px; 
background-image:url(/Skin/syku/menu_back_last.gif);
}
.be {
float: left; width: 105px; 
background-image:url(/Skin/syku/menu_back_be.gif);
}
#nav li a:hover{
letter-spacing:2px;
color:#133f8e;
}
#nav li:hover ul {
left: auto;
}
#nav li.sfhover ul {
left: auto;
}
#tabs {
    padding-left:0px;
	width:950px;
	float:none;
    font-size: 12px;
	font-weight: bold;
    line-height: normal;
    }
	
#tabs ul {
    margin: 0;
    padding: 2px 0 0 0;
    list-style: none;
    }
	
#tabs li {
    display: inline;
    margin: 0;
    padding: 0;
    }
	
#tabs a {
    float: left;
    background: url("/Skin/syku/tableft.gif") no-repeat left top;
    margin: 0 0 0 4px;
    padding: 0 0 0 5px;
    text-decoration: none;
    }
	
#tabs a span {
    float: left;
    display: block;
    background: url("/Skin/syku/tabright.gif") no-repeat right top;
    padding: 7px 14px 4px 7px;
    color: #002C47;
    }
	
/* Commented Backslash Hack hides rule from IE5-Mac \*/
#tabs a span { float: none; }
/* End IE5-Mac hack */

#tabs a:hover span {
    color: #FFF;
    }
	
#tabs a:hover {
    background-position: 0% -42px;
    }
	
#tabs a:hover span {
    background-position:100% -42px;
    }

#tabs #current a {
    background-position: 0% -42px;
	margin:0px;
    }
#tabs #current a span {
    background-position: 100% -42px;
    color: #FFF;
    }
#menu {
    background: url("/Skin/syku/menubg.gif") repeat-x;
	height: 30px;
	width:950px;
	}
	
#menu ul {
    margin: 0;
	padding-right: 5px;
	float: left;
	}

#menu li {
    list-style: none;
	float: left;
	margin-left: 5px;
	}
	
#menu li a {
    color: #000000;
	text-decoration: none;
	line-height: 29px;
	}

#menu li a:hover {
    text-decoration: none;
	color: #89aedd;
	}

#menu_left{
width:5px;
height:29px;
float:left;
background:url("/Skin/syku/menubg_lef.gif") repeat-y;}
.contain {
    margin: 0 auto;
	width: 945px;
	float:right;
	background:url("/Skin/syku/menubg_right.gif") repeat-y right;
	}
.menu_sub {
width:950px;
height:25px;
background:url("/Skin/syku/menu_sub_bg.gif") ;}
}
.menu_sub_left {
padding-top:5px;
padding-left:10px;
text-align:justify;
float:left;
width:680px;
letter-spacing:1px;
}
.menu_sub_left_a {
padding-top:5px;
padding-left:10px;
text-align:justify;
float:left;
width:680px;
}
.menu_sub_right {
text-align:justify;
padding-top:5px;
padding-left:10px;
float:right;
width:240px;
}
.top_menu {
margin-top:5px;
width:950px;
height:54px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.top_menu_1 {
width:945px;
height:52px;
}
.bottom {
padding-top:10px;
width:950px;
}
.bottom_760 {
padding-top:10px;
width:760px;
}
.bottom_menu_760 {
padding-top:7px;
letter-spacing:2px;
width:760px;
height:27px;
font-size:13px;
background-image:url(/Skin/syku/title_bg.jpg);
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;BORDER-BOTTOM: #7aaddf 1px solid;
}
.bottom_cop_760 {
padding-top:10px;
width:760px;
height:60px;
line-height:24px;
font-size:13px;
}

.bottom_menu {
padding-top:7px;
letter-spacing:2px;
width:950px;
height:19px;
font-size:13px;
background-image:url(/Skin/syku/title_bg.jpg);
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;BORDER-BOTTOM: #7aaddf 1px solid;
}
.bottom_cop {
padding-top:10px;
width:950px;
height:60px;
line-height:24px;
font-size:13px;
}
.main_1 {
margin-top:10px;
width:950px;
}
.main_1_left {
float:left;
width:677px;
height:200px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_1_left_left {
padding-top:2px;
float:left;
width:232px;
}
.sykuflash {
width:232px;
height:140px;
}
.flash_sub {
margin-top:3px;
margin-left:1px;
float:left;
width:228px;
height:25px;
background: #e4edf9; 
font-weight: normal; 
text-align: left;
border: 1px #c4d8ed solid;
padding-top:4px;
}
.main_1_left_right {
float:right;
width:438px;
height:200px;
text-align:justify;
}
.main_1_right {
padding-left:5px;
float:right;
width:268px;
height:200px;
}
.main_1_right_top {
width:260px;
height:96px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
background-color:#f0f6fb;
}
.main_1_right_bottom {
margin-top:10px;
width:260px;
height:96px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_2 {
padding-top:10px;
width:950px;
}
.main_2_left {
float:left;
width:682px;
}
.main_2_left_1 {
float:left;
width:228px;
height:186px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_2_left_2
{
margin-right:2px;
float:right;
width:416px;
height:186px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_2_right {
float:right;
width:259px;
height:186px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.title_228 {
width:228px;
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.title_228_sub {
width:228px;
height:26px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.gif);
}
.content_228 {
width:228px;
text-align:justify;
font-size:13px;
padding-bottom:3px;
}
.content_228_gj {
width:228px;
text-align:justify;
font-size:12px;
padding-bottom:20px;
}
.td_228 {
BORDER-bottom: #7aaddf 1px dashed; 
}
.content_228_supply {
width:228px;
text-align:justify;
font-size:13px;
padding-bottom:3px;
padding-left:5px;
padding-right:5px;
line-height:22px;
background-color:#f5fafe;
}
.content_228_news {
width:228px;
text-align:justify;
background-color:#f5fafe;
font-size:13px;
line-height:22px;
}
.menu_title {
FILTER: DropShadow(Color=0060A8, OffX=1, OffY=1, Positive=1); 
color:#ffffff;
padding-left:6px;
padding-top:5px;
width:72px;
height:32px;
background-image:url(/Skin/syku/current_menu.jpg);
float:left;
font-size:12px;
font-weight:bold;
letter-spacing:2px;
}
.menu_t {
FILTER: DropShadow(Color=0060A8, OffX=1, OffY=1, Positive=1); 
color:#ffffff;
padding-left:6px;
padding-top:5px;
width:85px;
height:26px;
background-image:url(/Skin/syku/current_m.jpg);
float:left;
font-size:12px;
font-weight:bold;
letter-spacing:2px;
}
.menu_title_c {
FILTER: DropShadow(Color=0060A8, OffX=1, OffY=1, Positive=1); 
color:#ffffff;
padding-left:10px;
padding-top:5px;
width:108px;
height:32px;
background-image:url(/Skin/syku/current_menu_c.jpg);
float:left;
font-size:12px;
font-weight:bold;
letter-spacing:2px;
text-align:center;
}
.menu_title_blue {
FILTER: DropShadow(Color=0060A8, OffX=1, OffY=1, Positive=1); 
color:#ffffff;
padding-left:10px;
padding-top:5px;
width:72px;
height:27px;
background-image:url(/Skin/syku/blue_menu.gif);
float:left;
font-size:12px;
font-weight:bold;
letter-spacing:2px;
}
.menu_title_blue a {
display: block; 
letter-spacing:2px;
}
.menu_title_blue a:link {
color:#fff; text-decoration:none;
}
.menu_title_blue a:visited {
color:#fff;text-decoration:none;
}
.menu_title_blue a:hover {
color:#fff;text-decoration:underline;
}
.menu_title_help {
FILTER: DropShadow(Color=0060A8, OffX=1, OffY=1, Positive=1); 
color:#ffffff;
padding-top:5px;
width:120px;
height:27px;
background-image:url(/Skin/syku/title_120.jpg);
float:left;
font-size:12px;
font-weight:bold;
letter-spacing:2px;
}
.menu_title_help a {
display: block; 
letter-spacing:4px;
text-align:center
}
.menu_title_help a:link {
color:#fff; text-decoration:none;
}
.menu_title_help a:visited {
color:#fff;text-decoration:none;
}
.menu_title_help a:hover {
color:#fff;text-decoration:underline;
}
.menu_more {
padding-top:8px;
float:right;
padding-right:5px;
}
.menu_more_blank {
float:right;
padding-right:5px;
}
.title_446 {
width:436px;
height:30px;
background-image:url(/Skin/syku/menu_bg.jpg);
text-align:justify;
}
.title_446_sub {
width:436px;
height:26px;
background-image:url(/Skin/syku/menu_bg.gif);
text-align:justify;
}
.title_446_s {
width:436px;
height:27px;
background-image:url(/Skin/syku/menu_bg.jpg);
text-align:justify;
}
.content_446 {
width:436px;
text-align:justify;
font-size:14px;
line-height:25px;
padding-left:5px;
padding-right:5px;
}
.content_446_s {
width:436px;
text-align:justify;
font-size:12px;
padding-right:5px;
}
.content_446_sub {
width:436px;
text-align:justify;
font-size:13px;
line-height:22px;
padding-left:5px;
padding-right:5px;
}
.title_259 {
width:259px;
height:30px;
background-image:url(/Skin/syku/menu_bg.jpg);
text-align:justify;
}
.title_259_sub {
width:259px;
height:27px;
background-image:url(/Skin/syku/menu_bg.gif);
text-align:justify;
}
.content_259 {
width:259px;
text-align:justify;
font-size:14px;
line-height:22px;
}
.content_259_left {
float:left;
width:80px;
padding-bottom:15px;
}
.content_259_right {
float:right;
width:178px;
}
.content_259_soft {
width:259px;
text-align:justify;
font-size:13px;
line-height:22px;
background:#f5fafe;
}
.content_259_zhuan {
width:259px;
text-align:justify;
font-size:14px;
line-height:22px;
background-color:#f5fafe;
}
.main_3 {
padding-top:10px;
width:950px;
margin-bottom:10px;
}
/* main_3 other定义开始 */
.main_3_l {
float:left;
width:228px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_3_r {
float:right;
width:710px;
}
.main_3_r_t {
width:710px;
height:26px;
}
.main_3_r_t_l {
float:left;
width:450px;
padding-right:4px;
}
.main_3_r_t_l_l {
float:left;
width:220px;
background: #e4edf9; 
border: 1px #c4d8ed solid;
height:26px;
padding-top:4px;
}
.main_3_r_t_l_r {
float:right;
width:220px;
background: #e4edf9; 
border: 1px #c4d8ed solid;
height:26px;
padding-top:4px;
}
.main_3_r_t_r {
float:right;
width:260px;
background: #e4edf9; 
border: 1px #c4d8ed solid;
height:26px;
padding-top:4px;
}
.main_3_r_t_s {
width:710px;
margin-top:5px;
}
.main_3_r_t_s_l {
float:left;
width:440px;
}
.main_3_r_t_s_r {
float:right;
width:260px;
}
.main_3_r_m {
width:710px;
margin-top:10px;
}
.main_3_r_m_l {
float:left;
width:436px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_3_r_m_r {
float:right;
width:262px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_3_r_f {
width:710px;
margin-top:10px;
}
.main_3_r_f_l {
float:left;
width:436px;
}
.main_3_r_f_r {
float:right;
width:262px;
}
.main_3_r_f_r_t {
width:262px;
}
.main_3_r_f_r_f {
margin-top:10px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
width:262px;
}
/* main_3 other定义结束 */
.main_3_left {
float:left;
width:687px;
}
.main_3_left_1 {
float:left;
width:228px;
height:210px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_3_left_2 {
padding-left:10px;
float:right;
width:436px;
height:210px;
}
.main_3_right {
width:262px;
height:210px;
float:right;
}
.main_3_right_top {
width:259px;
height:60px;
padding-bottom:5px;
}
.main_3_right_bottom {
width:259px;
height:143px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.middle_left_1{
width:435px;
padding-right:1px;
height:210px;
}
.listdh {
	WIDTH: 445px; 
}
.listdh2 {
         width:436px;
	FONT-WEIGHT: bold; FONT-SIZE: 12px; COLOR: #ffffff; TEXT-INDENT: 24px; HEIGHT: 170px;
}
.listdh_a {
	WIDTH: 186px; 
}
.menu_bottom1 {
	font-size: 12px;FONT-WEIGHT: normal; BACKGROUND: url(/Skin/syku/jiaoh2.gif); WIDTH: 87px; PADDING-TOP: 2px; HEIGHT: 32px
}
.menu_bottom2 {
	font-size: 12px;BACKGROUND: url(/Skin/syku/jiaoh.gif); WIDTH: 87px; LINE-HEIGHT: 120%; PADDING-TOP: 0px; HEIGHT: 32px
}
.menu_bottom2 A:link,.menu_bottom2 A:visited,.menu_bottom2 A:active{ text-decoration: none;color: #ffffff;} 
.menu_bottom2 A:hover{ text-decoration: underline; font-weight:bold; color: #ffffff; }
.menu_bottom3 {
	font-size: 12px;BACKGROUND: url(/Skin/syku/jiaoh_other.gif); WIDTH: 86px; LINE-HEIGHT: 120%; PADDING-TOP: 2px; HEIGHT: 32px
}
.listdldowm {
	HEIGHT: 2px
}
.main_4 {
width:950px;
}
.main_4_left {
float:left;
width:682px;
height:277px;
}
.main_4_left_top {
width:682px;
height:70px;
margin-bottom:5px;
padding-right:5px;
}
.main_4_left_bottom {
width:682px;
height:200px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_4_right {
width:259px;
height:280px;
float:right;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_5 {
width:950px;
}
.main_5_left {
float:left;
width:682px;
height:277px;
}
.main_5_left_top {
width:682px;
height:70px;
margin-bottom:5px;
padding-right:5px;
}
.main_5_left_bottom {
width:682px;
height:206px;
}
.main_5_left_bottom_1 {
width:228px;
height:206px;
float:left;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_5_left_bottom_2 {
margin-right:2px;
width:436px;
height:206px;
float:right;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_5_right {
width:259px;
height:277px;
float:right;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
#info{border:1px solid #BCFF1D; width:248px; background:#D6FF8C url(/Skin/syku/home_r_bg1.gif) no-repeat left top;  float:left; }
#info ul{ margin:5px;width:248px}
#info li{ width:33%; height:40px; float:left;}
#info li a{ font-size:12px; font-weight:normal; line-height:35px; display:block;color:#000; text-decoration:none; padding-left:40px;background:url(/Skin/syku/home_r_bg2.gif) no-repeat;}
#info li a:link,#info li a:visited{background-position:center top}
#info li a:hover,#info li a:active{background-position:center bottom}
/* 频道定义channel_index_1开始 */
/* 频道定义channel_index_1结束 */
/* li定义 */
.hot_top_1 {
list-style-image: url(/Skin/syku/top_1.gif);
list-style-position:inside;
margin-bottom:3px;
margin-top:2px;
height:22px;
}
.hot_top_2 {
list-style-image: url(/Skin/syku/top_2.gif);
list-style-position:inside;
margin-bottom:3px;
height:22px;
}
.hot_top_3 {
list-style-image: url(/Skin/syku/top_3.gif);
list-style-position:inside;
margin-bottom:3px;
height:22px;
}
.hot_top_4 {
list-style-image: url(/Skin/syku/top_4.gif);
list-style-position:inside;
margin-bottom:3px;
height:22px;
}
.hot_top_5 {
list-style-image: url(/Skin/syku/top_5.gif);
list-style-position:inside;
margin-bottom:3px;
height:22px;
}
.hot_top_6 {
list-style-image: url(/Skin/syku/top_6.gif);
list-style-position:inside;
margin-bottom:3px;
height:22px;
}
.hot_top_7 {
list-style-image: url(/Skin/syku/top_7.gif);
list-style-position:inside;
margin-bottom:3px;
height:22px;
}
.hot_top_8 {
list-style-image: url(/Skin/syku/top_8.gif);
list-style-position:inside;
margin-bottom:3px;
height:22px;
}
.hot_top_9 {
list-style-image: url(/Skin/syku/top_9.gif);
list-style-position:inside;
margin-bottom:5px;
height:25px;
}
.hot_top_10 {
list-style-image: url(/Skin/syku/top_10.gif);
list-style-position:inside;
}
/* li定义结束 */
/* 频道定义开始 */
.channel_index_1 {
width:950px;
padding-top:10px;
}
.channel_index_1_left {
float:left;
width:218px;
height:210px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.channel_index_1_left_s {
float:left;
width:218px;
}
.channel_index_1_left_top {
width:218px;
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.channel_index_1_left_top_s {
width:218px;
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
BORDER-TOP: #7aaddf 1px solid;
}
.channel_index_1_left_main {
text-align:justify;
width:218px;
height:120px;
}
.channel_index_1_left_main a {
font-size:13px;
}
.channel_index_1_left_main_s {
text-align:justify;
width:218px;
height:220px;
}
.hot_zhuanti {
text-align:justify;
width:218px;
height:145px;
font-size:13px;
line-height:22px;
letter-spacing:1px;
}
.channel_index_1_right {
float:right;
width:722px;
height:210px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.channel_index_1_right_top {
width:722px;
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.channel_index_1_right_top_s {
width:722px;
height:27px;
text-align:justify;
BORDER-top: #7aaddf 1px dashed;
margin-bottom:5px;
}
.channel_index_1_right_main {
text-align:justify;
width:722px;
height:180px;
}
.channel_index_1_right_main_top {
height:120px;
width:722px;
BORDER-BOTTOM: #7aaddf 1px dashed;
}
.channel_index_1_right_main_top_1 {
float:left;
width:485px;
height:180px;
BORDER-right: #7aaddf 1px dashed;
}
.channel_index_1_right_main_top_1_t {
width:485px;
}
.channel_index_1_right_main_top_1_f {
width:485px;
BORDER-top: #7aaddf 1px dashed;
}
.channel_index_1_right_main_top_2 {
float:right;
width:258px;
}
.my_focus {
float:right;
width:235px;
text-align:right;
padding-right:10px;
}
.channel_index_1_right_main_top_2 .pic_art_title a{color:#000;font-size:16px;font-family:"黑体";line-height:30px}
.channel_index_1_right_main_top_2 .pic_art_img{float:left;width:130px}
.channel_index_1_right_main_top_2 .pic_art_content,.channel_index_1_right_main_top_2 .pic_art_title{float:right;width:200px;line-height:20px}
.new_art {
float:right;
width:485px;
}
.new_art .pic_art_title a{color:#000;font-size:16px;font-family:"黑体";line-height:30px}
.new_art .pic_art_img{float:left;width:200px;height:120px;}
.new_art .pic_art_content,.new_art .pic_art_title{float:right;width:285px;line-height:20px}
.channel_index_1_right_main_top_2_1 {
padding-top:5px;
padding-left:5px;
margin-right:10px;
width:420px;
height:30px;
font-weight: bold;
BORDER-RIGHT: #ffab68 1px solid; BORDER-TOP: #ffab68 1px solid; FONT-SIZE: 14px; BORDER-LEFT: #ffab68 1px solid;  BORDER-BOTTOM: #ffab68 1px solid;
}
.channel_index_1_right_main_top_2_2 {
width:420px;
}
.channel_index_1_right_main_content {
}
.channel_index_1_right_main_content td {
height:25px;
}
.channel_index_2 {
padding-top:10px;
width:950px;
}
.channel_index_2_left {
float:left;
width:218px;
height:258px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.channel_index_2_left_top {
width:218px;
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.channel_index_2_left_top_sub {
width:218px;
height:27px;
text-align:justify;
BORDER-TOP: #7aaddf 1px solid; 
background-image:url(/Skin/syku/menu_bg.jpg);
}
.channel_index_2_left_main {
width:218px;
height:100px;
text-align:justify;
line-height:25px;
font-size:13px;
}
.channel_index_2_left_main_p {
width:218px;
height:100px;
text-align:justify;
line-height:25px;
font-size:13px;
padding-left:6px;
}
.channel_index_2_left_main_p a {
font-size:13px;
}
.channel_index_2_left_main_sub {
width:218px;
height:100px;
text-align:justify;
line-height:25px;
}
.channel_index_2_left_main table {
background-color:#f5fafe;
line-height:25px;
}
.channel_index_2_left_main_s {
width:218px;
text-align:center;
font-size:14px;
}
.channel_index_2_right {
float:right;
width:722px;
}
.channel_index_2_right_top {
width:722px;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.channel_index_2_right_left {
float:left;
width:470px;
height:258px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.channel_index_2_right_left_notop {
float:left;
width:470px;
height:258px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.channel_index_2_right_left_no {
float:left;
width:470px;
height:258px;
}
.channel_index_2_right_left_top {
width:470px;
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.channel_index_2_right_left_top_blue {
width:470px;
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
BORDER-RIGHT: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;  FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  
}
.channel_index_2_right_left_top_list {
margin-top:5px;
width:470px;
height:27px;
text-align:justify;
BORDER-TOP: #7aaddf 1px solid; 
BORDER-left: #7aaddf 1px solid;
BORDER-right: #7aaddf 1px solid;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.channel_index_2_right_left_top_dao {
font-size:14px;
width:470px;
height:27px;
text-align:justify;
BORDER-TOP: #7aaddf 1px solid; 
BORDER-left: #7aaddf 1px solid;
BORDER-right: #7aaddf 1px solid;
background-image:url(/Skin/syku/menu_bg.jpg);
padding-top:5px;
padding-left:10px;
}
.channel_index_2_right_left_top_dao a {
font-size:14px;
}
.channel_index_2_right_left_top_dao a:link {
font-size:14px;
}
.channel_index_2_right_left_top_dao a:visited {
font-size:14px;
}
.channel_index_2_right_left_top_dao a:hover {
font-size:14px;
}
.channel_index_2_right_left_top_sub {
width:470px;
height:27px;
text-align:justify;
BORDER-TOP: #7aaddf 1px solid; 
background-image:url(/Skin/syku/menu_bg.jpg);
}
.channel_index_2_right_left_main {
width:470px;
text-align:justify;
line-height:60px;
}
.channel_index_2_right_left_main_soft {
width:470px;
text-align:justify;
line-height:20px;
padding-bottom:5px;
padding-right:5px;
}
.channel_index_2_right_left_main_left {
float:left;
width:140px;
}
.channel_index_2_right_left_main_right {
float:right;
width:320px;
}
.channel_index_2_right_left_main_pic {
FLOAT: left; WIDTH: 100px; HEIGHT: 60px;
}
.channel_index_2_right_left_main_text {
padding-bottom:10px;
line-height:25px;
font-size:13px;
}
.channel_index_2_right_right {
float:right;
width:242px;
height:258px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.channel_index_2_right_adv {
float:right;
width:242px;
}
.channel_index_2_right_right_top {
width:242px;
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.channel_index_2_right_right_top_sub {
width:242px;
height:27px;
text-align:justify;
BORDER-TOP: #7aaddf 1px solid; 
background-image:url(/Skin/syku/menu_bg.jpg);
}
.channel_index_2_right_right_main {
width:242px;
text-align:justify;
padding-bottom:5px;
line-height:22px;
}
.gg_content {
width:242px;
text-align:justify;
padding-bottom:5px;
}
.channel_index_2_right_adv {
width:242px;
text-align:center;
padding-bottom:5px;
}
.adv {
padding-top:1px;
text-align:justify;
}
.channel_bottom {
width:950px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
margin-top:10px;
height:88px
}
.ik_channel{float:left;width:950px;height:70px;text-align:left;margin-left:0px;
    margin-bottom:0px;}
.sk_channel{
	float:left;
	width:19px;
	height:77px;
	text-align:center;
        padding-top:10px;
}
.ib_channel{float:right;width:910px;height:auto;text-align:left;padding-left:5px;line-height:20px;font-size:13px;padding-right:10px;}
.channel_index_3 {
padding-top:10px;
width:950px;
}
.channel_index_3_left {
float:left;
width:218px;
height:48px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.channel_index_3_left_top {
width:218px;
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.channel_index_3_link {
width:720px;
height:48px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.channel_index_3_link_top {
float:right;
width:720px;
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.channel_index_3_link_main {
height:40px;
text-align:justify;
}
.channel_index_3_left_main {
width:218px;
height:40px;
text-align:justify;
}
.channel_index_3_right {
float:right;
width:722px;
}
.channel_index_3_right_left {
float:left;
width:470px;
height:258px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.channel_index_3_right_left_top {
width:470px;
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.channel_index_3_right_left_main {
width:470px;
height:228px;
text-align:justify;
}
.channel_index_3_right_right {
float:right;
width:242px;
height:258px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.channel_index_3_right_right_top {
width:242px;
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.channel_index_3_right_right_main {
width:242px;
height:228px;
text-align:justify;
}
/* 频道定义结束 */
/* 内容页定义开始 */
.list_main {
width:950px;
}
.list_main_left {
float:left;
}
.list_main_right {
float:right;
}
.help_main_right {
margin-top:10px;
float:right;
width:698px;
height:100px;
BORDER-TOP: #7aaddf 1px solid;BORDER-right: #7aaddf 1px solid;
BORDER-left: #7aaddf 1px solid;BORDER-bottom: #7aaddf 1px solid;
padding:10px;
line-height:25px;
text-align:justify;
}
.list_main_right_sub {
margin-top:10px;
float:right;
BORDER-TOP: #7aaddf 1px solid;BORDER-right: #7aaddf 1px solid;
BORDER-left: #7aaddf 1px solid;BORDER-bottom: #7aaddf 1px solid;
}
.list_main_right_search {
width:695px;
height:30px;
BORDER-TOP: #7aaddf 1px solid;BORDER-right: #7aaddf 1px solid;
BORDER-left: #7aaddf 1px solid;BORDER-bottom: #7aaddf 1px solid;
}
.list_main_right_pic {
margin-top:10px;
float:right;
}
.list_main_right_top {
width:695px;
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.list_main_right_top_no {
width:695px;
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
BORDER-TOP: #7aaddf 1px solid;
margin-left:5px;
}
.list_main_right_main {
text-align:justify;
width:695px;
height:500px;
}
.list_main_right_list {
margin-left:5px;
text-align:justify;
width:695px;
height:500px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.list_main_right_1 {
margin-top:10px;
width:242px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.list_main_right_1_sub {
margin-top:10px;
width:242px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.list_content {
font-size:14px;
}
.list_content a {
font-size:14px;
line-height:22px;
}
.list_content a:link {
font-size:14px;
line-height:22px;
}
.list_content a:visited {
font-size:14px;
line-height:22px;
}
.list_content a:hover {
font-size:14px;
line-height:22px;
}
.list_content_1 {
margin-top:5px;
padding-top:5px;
text-align:justify;
width:470px;
height:30px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  
}
.list_content_title {
float:left;
font-size:14px;
font-weight:bold;
}
.list_content_time {
float:right;
padding-right:10px;
}
.list_content_2 {
text-align:justify;
width:470px;
height:100px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid; 
}
.list_content_3 {
text-align:justify;
width:470px;
height:20px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px dashed; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid; 
font-size:14px;
line-height:20px;
}
.list_content_4 {
padding-top:5px;
padding-right:10px;
width:470px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px dashed; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.list_content_4_l {
float:left;
width:350px;
height:25px;
text-align:left;
padding-left:10px;
}
.list_content_4_r {
float:right;
width:100px;
text-align:right;
height:25px;
}
.title_242 {
width:242px;
height:27px;
background-image:url(/Skin/syku/menu_bg.jpg);
text-align:justify;
}
.title_242_blue {
width:242px;
height:27px;
background-image:url(/Skin/syku/menu_bg_27.jpg);
text-align:justify;
}
.title_242_sub {
width:242px;
height:27px;
background-image:url(/Skin/syku/menu_bg.jpg);
text-align:justify;
BORDER-TOP: #7aaddf 1px solid;
}
.main_242 {
margin-top:10px;
text-align:justify;
padding-top:10px;
padding-left:10px;
width:242px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.adv_right_top {
margin-top:10px;
text-align:justify;
width:242px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.adv_right_middle {
text-align:justify;
width:242px;
}
.adv_right_bottom {
text-align:justify;
width:242px;
}
.content_242 {
width:242px;
text-align:justify;
padding-bottom:5px;
padding-left:5px;
line-height:22px;
}
.menu_698 {
text-align:justify;
margin-top:10px;
padding-top:7px;
padding-left:10px;
width:698px;
height:27px;
background-image:url(/Skin/syku/title_bg.jpg);
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_690 {
text-align:justify;
padding-top:10px;
padding-left:10px;
width:690px;
background-color:#f5fafe;
}
.main_698 {
text-align:justify;
padding-top:10px;
padding-left:10px;
width:698px;
background-color:#f5fafe;
}
.main_698_title {
padding-top:10px;
height:40px;
font-family:"宋体";
color:#000000;
font-size:22px;
font-weight:bold;
letter-spacing:2px;
text-align:center;
}
.main_698_title_sub {
text-align:center;
width:670px;
height:30px;
border-bottom: #7aaddf 1px dashed;
letter-spacing:2px;
}
.main_698_content {
height:200px;
font-size:14px;
line-height:25px;
padding-left:5px;
padding-right:5px;
padding-top:5px;
padding-bottom:5px;
}
.main_698_content a {
font-weight:normal;
}
.main_698_ping {
float:left;
width:698px;
}
.main_698_ping_top {
padding-top:7px;
padding-left:10px;
text-align:justify;
margin-top:10px;
width:698px;
height:27px;
background-image:url(/Skin/syku/title_bg.jpg);
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_698_ping_sub {
padding-top:7px;
padding-left:10px;
text-align:justify;
margin-top:10px;
width:696px;
height:27px;
background-image:url(/Skin/syku/title_bg.jpg);
BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_698_ping_top_left {
float:left;
width:285px;
}
.main_698_ping_top_right {
float:right;
width:395px;
text-align:right;
padding-right:5px;
}
.main_698_ping_content {
height:100px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_698_ping_content_top {
text-align:justify;
}
.main_698_ping_content_main {
height:100px;
text-align:justify;
}
.main_698_ping_bottom {
padding-top:5px;
text-align:justify;
border-top:#7aaddf 1px dashed;
height:40px;
line-height:18px;
}
.main_698_real {
float:left;
width:698px;
}
.main_698_real_top {
padding-top:7px;
padding-left:10px;
text-align:justify;
margin-top:10px;
width:698px;
height:27px;
background-image:url(/Skin/syku/title_bg.jpg);
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_698_real_top_left {
width:340px;
float:left;
}
.main_698_real_top_right {
width:340px;
float:right;
}
.main_698_real_content {
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
width:698px;
}
.main_698_real_content_left {
float:left;
width:340px;
text-align:justify;
padding-left:5px;
padding-top:5px;
padding-bottom:5px;
line-height:22px;
}
.main_698_real_content_left_ou {
background-image:url(/Skin/syku/point.gif) repeat-y left;
}
.main_698_real_content_left_in {
padding-left:20px;
}
.main_698_real_content_right {
padding-left:5px;
float:right;
width:340px;
height:140px;
border-left:#7aaddf 1px dashed;
text-align:justify;
padding-top:5px;
padding-bottom:5px;
line-height:22px;
}
.article_next {
text-align:justify;
width:698px;
background-color:#deedfb;
height:30px;
font-size:14px;
line-height:25px;
}
/* 内容页定义结束 */
.path_950 {
width:950px;
height:27px;
text-align:justify;
margin-top:5px;
padding-left:5px;
padding-top:5px;
letter-spacing:2px;
background-image:url(/Skin/syku/title_bg.jpg);
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid; BORDER-right: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.main_950 {
FONT-SIZE: 12px;
margin-top:10px;
text-align:justify;
padding-top:10px;
padding-left:10px;
width:950px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.content_950 {
width:930px;
text-align:justify;
}
.channel_index_1_right_main_top_2 a {
padding-left:10px;
padding-top:5px;
display: block; width: 420px; height:30px; text-align:justify;
letter-spacing:2px;
font-size:14px;
font-weight: bold;
margin-right:10px;
background-image:url(/Skin/syku/channel_new_bg.gif);
}
.channel_index_1_right_main_top_2 a:link {
text-decoration:none;
}
.channel_index_1_right_main_top_2 a:visited {
text-decoration:none;
}
.channel_index_1_right_main_top_2 a:hover {
text-decoration:underline;
}
.top_article {
FLOAT: right; 
WIDTH: 220px;
line-height:19px;
}
.top_article a {
line-height:25px;
}
.top_article a:link {
line-height:25px;
}
.top_article a:visited {
line-height:25px;
}
.top_article a:hover {
line-height:25px;
}
.content_hzh {
float:left;
width:300px;
height:300px;
}
.content_adv_text {
list-style-type:square;
width:115px;
float:right;
}
.tools {
list-style-type:square;
float:left;
height:25px;
width:96px;
}
.ggli {
padding-top:3px;
list-style-type:square;
float:left;
height:20px;
width:140px;
}
.237li {
list-style-type:none;
float:left;
height:60px;
width:237px;
}
.237ul {
width:950px;
}
.ggtitle {
list-style-type:square;
float:left;
height:28px;
width:82px;
}
.tools_ul {
padding-left:5px;
width:288px;
}
.sk{
	float:left;
	width:19px;
	height:45px;
	text-align:center;
        padding-top:10px;
}
.ska{
	float:left;
	width:19px;
	height:85px;
	text-align:center;
        padding-top:10px;
}
.skb{
	float:left;
	width:19px;
	height:134px;
	text-align:center;
        padding-top:10px;
}
.skc{
	float:left;
	width:19px;
	height:140px;
	text-align:center;
        padding-top:10px;
}
.blue{background-color: #bedcff;}
.qhong{	background-color:#FFD9D9;}
.yellow{background-color:#fee3ac;}
.lb{float:left;width:185px;height:auto;text-align:left;padding-left:10px;}
.ib{float:right;width:415px;height:auto;text-align:left;padding-left:10px;line-height:20px;font-size:13px;BORDER-bottom: #7aaddf 1px dashed;}
.ibb{float:right;width:415px;height:auto;text-align:left;padding-left:10px;line-height:20px;font-size:13px;}
.iba{float:right;width:238px;height:auto;text-align:left;padding-left:5px;line-height:22px;padding-top:2px;font-size:13px;}
.ibc{float:right;width:400px;height:auto;text-align:left;padding-left:5px;line-height:22px;padding-top:2px;font-size:13px;}
.lb ul{list-style-type: none;}
.ib ul{list-style-type: none;}
.lba ul{list-style-type: none;}
.iba ul{list-style-type: none;}
.ibb ul{list-style-type: none;}
.ibc ul{list-style-type: none;}
.kk{float:left;width:210px;height:auto;text-align:left;margin-left:3px;
    margin-bottom:4px;}
.ik{float:left;width:435px;height:auto;text-align:left;margin-left:3px;
    margin-bottom:4px;}
.ik_sub{float:left;width:435px;height:auto;text-align:left;margin-left:3px;
    margin-top:4px;}
.ika{float:left;width:258px;height:auto;text-align:left;margin-left:0px;
    margin-bottom:0px;}
.iks{float:left;width:425px;height:auto;text-align:left;margin-left:0px;
    margin-bottom:0px;}
.pic_title {
padding-top:10px;
height:40px;
font-family:"黑体";
color:#000000;
font-size:18px;
letter-spacing:2px;
text-align:center;
}
.pic_title_sub {
text-align:center;
width:670px;
height:30px;
border-bottom: #7aaddf 1px dashed;
letter-spacing:2px;
margin-left:20px;
}
.pic_content {
width:695px;
margin-left:5px;
}
.pic_next {
margin-top:10px;
}
.pic_info {
margin-left:10px;
height:30px;
width:695px;
background-color:#deedfb;
padding-top:5px;
padding-left:5px;
color:#cf060e;
font-weight:bold;
}
.pic_info_main {
background-color:#f5fafe;
margin-left:10px;
height:30px;
width:695px;
}
.pic_form {
margin-left:10px;
height:30px;
width:695px;
text-align:right;
padding-right:25px;
}
.pic_comment {
margin-left:10px;
width:695px;
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
BORDER-left: #7aaddf 1px solid;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid;
}
.pic_comment_left {
padding-top:5px;
float:left;
padding-left:5px;
}
.pic_comment_right {
float:right;
padding-right:10px;
padding-top:5px;
}
.pic_comment_main {
width:695px;
text-align:justify;
BORDER-RIGHT: #7aaddf 1px solid; 
BORDER-left: #7aaddf 1px solid; BORDER-bottom: #7aaddf 1px solid;
margin-left:10px;
}
.720_main {
text-align:justify;
padding-top:10px;
padding-left:10px;
width:720px;
background-color:#f5fafe;
}
.720_title_top {
width:720px;
height:27px;
background-image:url(/Skin/syku/menu_bg_27.jpg);
BORDER-RIGHT: #7aaddf 1px solid; 
BORDER-left: #7aaddf 1px solid;
BORDER-top: #7aaddf 1px solid; 
BORDER-bottom: #7aaddf 1px solid;
color:#ffffff;
text-align:justify;
}
.720_title_top_no {
width:720px;
height:27px;
background-image:url(/Skin/syku/menu_bg_27.jpg);
BORDER-RIGHT: #7aaddf 1px solid; 
BORDER-left: #7aaddf 1px solid;
BORDER-top: #7aaddf 1px solid; 
BORDER-bottom: #7aaddf 1px solid; 
color:#ffffff;
text-align:justify;
margin-bottom:5px;
}
.menu_more_soft {
float:right;
padding-right:5px;
}
.720_title_top_1 {
FILTER: DropShadow(Color=0060A8, OffX=1, OffY=1, Positive=1); 
color:#ffffff;
padding-left:10px;
padding-top:5px;
width:450px;
height:27px;
background-image:url(/Skin/syku/menu_bg_27_1.jpg);
float:left;
font-size:12px;
font-weight:bold;
letter-spacing:2px;
text-align:justify;
padding-left:10px;
margin-left:1px;
}
.720_title_top_list {
FILTER: DropShadow(Color=0060A8, OffX=1, OffY=1, Positive=1); 
color:#ffffff;
padding-left:10px;
padding-top:5px;
width:150px;
height:27px;
background-image:url(/Skin/syku/menu_bg_27_1.jpg);
float:left;
font-size:12px;
font-weight:bold;
letter-spacing:2px;
text-align:justify;
padding-left:10px;
margin-left:1px;
}
.720_title_top_t {
FILTER: DropShadow(Color=0060A8, OffX=1, OffY=1, Positive=1); 
color:#ffffff;
padding-left:10px;
padding-top:5px;
width:108px;
height:27px;
background-image:url(/Skin/syku/menu_bg_27_t.jpg);
float:left;
font-size:12px;
font-weight:bold;
letter-spacing:2px;
text-align:center;
}
.720_title_top_2 {
float:right;
padding-right:5px;
}
.soft_pro {
width:720px;
margin-top:5px;
text-align:justify;
color:#656565;
}
.soft_pro_s {
width:720px;
text-align:justify;
color:#656565;
}
.soft_pro_left {
float:left;
width:300px;
height:300px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.soft_pro_left_1 {
width:300px;
height:30px;
BORDER-BOTTOM: #7aaddf 1px solid;
text-align:justify;
padding-top:8px;
padding-left:5px;
}
.soft_pro_left_1_sub {
width:300px;
height:30px;
BORDER-BOTTOM: #7aaddf 1px solid;
text-align:justify;
padding-top:8px;
padding-left:5px;
}
.soft_pro_left_1_other {
width:300px;
height:116px;
}
.soft_pro_right {
float:right;
width:418px;
}
.soft_pro_right_1 {
float:left;
height:300px;
width:276px;
BORDER-TOP: #7aaddf 1px solid;
BORDER-BOTTOM: #7aaddf 1px solid;
}
.soft_pro_right_2 {
float:right;
width:140px;
height:300px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.soft_pro_right_2_1 {
width:140px;
height:30px;
BORDER-BOTTOM: #7aaddf 1px solid;
text-align:justify;
padding-top:8px;
padding-left:5px;
}
.soft_pro_right_2_1_sub {
width:140px;
height:30px;
BORDER-BOTTOM: #7aaddf 1px solid;
text-align:justify;
padding-top:8px;
padding-left:5px;
}
.soft_pro_right_2_1_other {
width:140px;
height:88px;
}
.soft_info {
margin-top:5px;
width:720px;
BORDER-RIGHT: #7aaddf 1px solid; 
BORDER-left: #7aaddf 1px solid;
BORDER-top: #7aaddf 1px solid; 
BORDER-bottom: #7aaddf 1px solid;
}
.soft_info_title {
width:718px;
height:27px;
background-image:url(/Skin/syku/menu_bg_27.jpg);
BORDER-bottom: #7aaddf 1px solid;
color:#ffffff;
text-align:justify;
}
.soft_info_main {
width:718px;
height:100px;
margin-top:5px;
text-align:justify;
padding-top:8px;
padding-left:5px;
padding-bottom:5px;
line-height:20px;
}
.soft_down {
width:720px;
margin-top:5px;
}
.soft_down_title {
width:720px;
height:27px;
background-image:url(/Skin/syku/menu_bg_27.jpg);
BORDER-RIGHT: #7aaddf 1px solid; 
BORDER-left: #7aaddf 1px solid;
BORDER-top: #7aaddf 1px solid; 
BORDER-bottom: #7aaddf 1px solid;
color:#ffffff;
text-align:justify;
}
.soft_down_title_left {
FILTER: DropShadow(Color=0060A8, OffX=1, OffY=1, Positive=1); 
color:#ffffff;
padding-left:10px;
padding-top:5px;
width:108px;
height:27px;
background-image:url(/Skin/syku/menu_bg_27_t.jpg);
float:left;
font-size:12px;
font-weight:bold;
letter-spacing:2px;
text-align:center;
}
.soft_down_title_right {
float:right;
padding-right:5px;
}
.soft_down_a {
width:720px;
height:50px;
BORDER-RIGHT: #7aaddf 1px solid; 
BORDER-left: #7aaddf 1px solid;
BORDER-bottom: #7aaddf 1px solid;
text-align:justify;
padding-left:5px;
}
.soft_down_url {
width:720px;
height:30px;
BORDER-RIGHT: #7aaddf 1px solid; 
BORDER-left: #7aaddf 1px solid;
BORDER-bottom: #7aaddf 1px solid;
text-align:justify;
padding-top:8px;
padding-left:5px;
}
.soft_down_b {
width:720px;
height:80px;
BORDER-RIGHT: #7aaddf 1px solid; 
BORDER-left: #7aaddf 1px solid;
BORDER-bottom: #7aaddf 1px solid;
text-align:justify;
padding-left:5px;
}
.soft_real {
width:720px;
margin-top:5px;
}
.soft_real_title {
width:720px;
height:27px;
background-image:url(/Skin/syku/menu_bg_27.jpg);
BORDER-RIGHT: #7aaddf 1px solid; 
BORDER-left: #7aaddf 1px solid;
BORDER-top: #7aaddf 1px solid; 
BORDER-bottom: #7aaddf 1px solid;
color:#ffffff;
text-align:justify;
}
.soft_real_title_left {
FILTER: DropShadow(Color=0060A8, OffX=1, OffY=1, Positive=1); 
color:#ffffff;
padding-left:10px;
padding-top:5px;
width:108px;
height:27px;
background-image:url(/Skin/syku/menu_bg_27_t.jpg);
float:left;
font-size:12px;
font-weight:bold;
letter-spacing:2px;
text-align:center;
}
.soft_real_title_right {
float:right;
padding-right:5px;
}
.soft_real_main {
width:720px;
height:50px;
BORDER-RIGHT: #7aaddf 1px solid; 
BORDER-left: #7aaddf 1px solid;
BORDER-bottom: #7aaddf 1px solid;
text-align:justify;
padding-top:8px;
padding-left:5px;
padding-bottom:5px;
line-height:22px;
}
.soft_intr {
width:720px;
margin-top:5px;
}
.soft_intr_title {
width:720px;
height:27px;
background-image:url(/Skin/syku/menu_bg_27.jpg);
BORDER-RIGHT: #7aaddf 1px solid; 
BORDER-left: #7aaddf 1px solid;
BORDER-top: #7aaddf 1px solid; 
BORDER-bottom: #7aaddf 1px solid;
color:#ffffff;
text-align:justify;
}
.soft_intr_title_left {
FILTER: DropShadow(Color=0060A8, OffX=1, OffY=1, Positive=1); 
color:#ffffff;
padding-left:10px;
padding-top:5px;
width:108px;
height:27px;
background-image:url(/Skin/syku/menu_bg_27_t.jpg);
float:left;
font-size:12px;
font-weight:bold;
letter-spacing:2px;
text-align:center;
}
.soft_intr_title_right {
float:right;
padding-right:5px;
}
.soft_intr_main {
width:720px;
height:50px;
BORDER-RIGHT: #7aaddf 1px solid; 
BORDER-left: #7aaddf 1px solid;
BORDER-bottom: #7aaddf 1px solid;
text-align:justify;
padding-top:8px;
padding-left:5px;
padding-bottom:5px;
}
.soft_ping {
width:720px;
margin-top:5px;
}
.soft_ping_title {
width:720px;
height:27px;
background-image:url(/Skin/syku/menu_bg_27.jpg);
BORDER-RIGHT: #7aaddf 1px solid; 
BORDER-left: #7aaddf 1px solid;
BORDER-top: #7aaddf 1px solid; 
BORDER-bottom: #7aaddf 1px solid;
color:#ffffff;
text-align:justify;
}
.soft_ping_title_left {
FILTER: DropShadow(Color=0060A8, OffX=1, OffY=1, Positive=1); 
color:#ffffff;
padding-left:5px;
margin-left:1px;
padding-top:5px;
width:450px;
height:27px;
background-image:url(/Skin/syku/menu_bg_27_1.jpg);
float:left;
font-size:12px;
font-weight:bold;
letter-spacing:2px;
text-align:center;
}
.soft_ping_title_right {
float:right;
padding-right:5px;
color:#fc6700;
padding-top:8px;
}
.soft_ping_main {
width:720px;
height:50px;
BORDER-RIGHT: #7aaddf 1px solid; 
BORDER-left: #7aaddf 1px solid;
BORDER-bottom: #7aaddf 1px solid;
text-align:justify;
padding-top:8px;
padding-left:5px;
}
.ShowPage {
width:722px;
height:30px;
background-color:#deedfb;
margin-top:10px;
padding-top:4px;
}
.down_main {
width:950px;
margin-top:10px;
}
.down_main_left {
float:left;
width:698px;
}
.down_main_left_top {
width:698px;
}
.down_main_left_1 {
float:left;
width:344px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.down_main_left_1_top {
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.down_main_left_1_main {
text-align:justify;
width:342px;
padding-top:5px;
padding-left:5px;
padding-right:8px;
padding-bottom:5px;
}
.down_main_left_2 {
float:right;
width:344px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.down_main_left_2_top {
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.down_main_left_2_main {
text-align:justify;
width:342px;
padding-top:5px;
padding-left:5px;
padding-right:8px;
padding-bottom:5px;
}
.down_main_left_sub {
float:left;
width:698px;
margin-top:10px;
}
.down_main_right {
float:right;
width:242px;
height:258px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.down_right_top {
width:242px;
height:56px;
BORDER-BOTTOM: #7aaddf 1px solid;
}
.down_main_mid {
float:left;
width:698px;
height:80px;
margin-top:10px;
}
.down_main_mid_s {
float:left;
width:698px;
height:80px;
margin-bottom:10px;
}
.down_main_left_t {
float:left;
width:698px;
height:200px;
margin-bottom:10px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid;
}
.down_main_left_t_top {
height:27px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.down_main_left_t_main {
text-align:justify;
}
.huan a {
line-height:20px;
}
.huan a:link {
line-height:20px;
}
.huan a:visited {
line-height:20px;
}
.huan a:hover {
line-height:30px;text-decoration:underline;
}
/* --评论显示页的CSS定义开始-- */
.Comment_border /* 蓝色表格边框背景颜色定义(760) */
{
border: 0px solid #FF648B;
}
.Comment_title /* 标题背景颜色定义(760) */
{
background:#deedfb;color: #000000;font-weight: normal;height: 25;
}
.Comment_tdbg1 /* 表格背景颜色定义(760) */
{
background:#FFFFFF;line-height: 120%;
}
.Comment_tdbg2 /* 留言显示1px表格背景颜色定义 */
{
background:#FAFAFA;
}
　　/* --评论显示页的CSS定义结束-- */
.content_mid {
width:698px;
}
.content_mid_left {
float:left;
width:468px;
text-align:justify;
padding-top:5px;
}
.content_mid_right {
float:right;
width:220px;
}
.list_t_1 {
background:#e4edf9; 
}
.list_t_2 {
background:#f5fafe;
}
.list_h {
text-align:justify;
padding-bottom:5px;
padding-left:5px;
line-height:22px;
font-size:13px;
}
.list_h a {
line-height:22px;
font-size:13px;
}
.list_h a:link {
text-decoration:none;
line-height:22px;
}
.list_h a:visited {
text-decoration:none;
line-height:22px;
}
.list_h a:hover {
text-decoration:underline;
line-height:22px;
}
.list_h1 {
text-align:justify;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
line-height:22px;
font-size:13px;
}
.list_h1 a {
line-height:22px;
font-size:13px;
}
.list_h1 a:link {
text-decoration:none;
line-height:22px;
}
.list_h1 a:visited {
text-decoration:none;
line-height:22px;
}
.list_h1 a:hover {
text-decoration:underline;
line-height:22px;
}
.list_1 {
text-align:justify;
line-height:22px;
font-size:13px;
}
.list_1 a {
line-height:22px;
font-size:13px;
}
.list_1 a:link {
text-decoration:none;
line-height:22px;
font-size:13px;
}
.list_1 a:visited {
text-decoration:none;
line-height:22px;
font-size:13px;
}
.list_1 a:hover {
text-decoration:underline;
line-height:22px;
font-size:13px;
}
.list_2 {
text-align:justify;
line-height:24px;
font-size:13px;
}
.list_3 {
text-align:justify;
line-height:24px;
font-size:13px;
padding:5px;
}
.list_4 {
text-align:justify;
line-height:20px;
font-size:13px;
}
/* 商城定义开始 */
.shop_search {
width:950px;
height:30px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid; BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
margin-top:10px;
}
.shop_main {
width:950px;
margin-top:10px;
}
.shop_l {
width:205px;
float:left;
}
.shop_l_1 {
width:205px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid; BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:100px;
}
.shop_title_1 {
width:205px;
height:30px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
font-weight:bold;
padding-top:6px;
padding-left:10px;
text-align:justify;
}
.shop_content_1 {
width:205px;
text-align:justify;
padding-left:5px;
padding-bottom:10px;
line-height:30px;
}
.shop_title_2 {
width:200px;
height:30px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
font-weight:bold;
padding-top:6px;
padding-left:10px;
text-align:justify;
}
.shop_content_2 {
width:200px;
}
.shop_title_3 {
width:525px;
height:30px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
font-weight:bold;
padding-top:6px;
padding-left:10px;
text-align:justify;
}
.shop_title {
width:525px;
height:30px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
padding-top:6px;
padding-left:10px;
text-align:justify;
}
.shop_title_l {
width:950px;
height:26px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
padding-top:6px;
padding-left:10px;
text-align:justify;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid; BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
}
.shop_title_left {
font-weight:bold;
float:left;
width:450px;
}
.shop_title_right {
float:right;
width:50px;
padding-right:5px;
}
.shop_content_3 {
width:525px;
text-align:justify;
}
.shop_l_2 {
width:205px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
margin-top:10px;
}
.shop_l_3 {
width:205px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
margin-top:10px;
}
.shop_right {
float:right;
width:735px;
}
.shop_m {
width:525px;
float:left;
}
.shop_m_1 {
width:525px;
height:100px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:100px;
}
.shop_m_main {
width:525px;
float:left;
BORDER-top: #7aaddf 1px solid;
}
.shop_middle {
width:525px;
height:100px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; 
height:100px;
}
.shop_m_2 {
width:525px;
height:300px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:100px;
margin-top:10px;
}
.shop_r {
float:right;
width:200px;
}
.shop_r_1 {
width:200px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:100px;
}
.shop_r_2 {
width:200px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:300px;
margin-top:10px;
}
.shop_r_s {
width:200px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; 
height:100px;
}
.shop_r_3 {
width:200px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:100px;
margin-top:10px;
}
.shop_help {
width:950px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:100px;
margin-top:10px;
}
.ik_shop{float:left;width:435px;height:auto;text-align:left;margin-left:0px;
    margin-bottom:4px;}
.sk_shop{
	float:left;
	width:19px;
	height:100px;
	text-align:center;
        padding-top:10px;
}
.ib_shop{float:right;width:415px;height:auto;text-align:left;padding-left:10px;line-height:20px;font-size:13px;}
.sk_Dot {
	width:18px;
	height:9px;
         margin-top:3px;
	float:left;
	text-align:center;
}
.sk_Text {
	width:105px;
	height:16px;
	float:left;
	line-height:16px;
	text-align:left;
         color:#2E4690;
}
.sk_Text_l {
	width:405px;
	height:16px;
	float:left;
	line-height:16px;
	text-align:left;
         color:#2E4690;
}
.sk_text_r {
	width:120px;
	height:16px;
	float:right;
	line-height:16px;
	text-align:right;
         color:#2E4690;
}
.sk_Text a {
text-align:left;
letter-spacing:2px;
color:#2E4690;
}
.sk_Text a:link {
color:#2E4690; text-decoration:none;
}
.sk_Text a:visited {
color:#2E4690;text-decoration:none;
}
.sk_Text a:hover {
color:#2E4690;text-decoration:underline;
}
.sk_Text_l {
	width:305px;
	height:16px;
	float:left;
	line-height:16px;
	text-align:left;
         color:#2E4690;
}
.shop_list {
float:right;
width:735px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
}
.shop_list_top {
width:735px;
height:30px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
font-weight:bold;
padding-top:6px;
padding-left:10px;
text-align:justify;
}
.shop_list_main {
width:735px;
text-align:justify;
}
.shop_content {
float:right;
width:735px;
}
.shop_content_top {
width:735px;
height:27px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
font-weight:bold;
padding-top:6px;
padding-left:10px;
text-align:justify;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
}
.shop_content_main {
width:735px;
text-align:justify;
margin-top:10px;
}
.tab_content td {
height:30px;
}		
/* 商城定义结束 */
/* 供求定义开始 */
.gq_top {
width:950px;
height:30px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid; BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
margin-top:10px;
font-size:14px;
font-weight:bold;
padding-top:6px;
padding-left:10px;
text-align:justify;
}
.gq_top_l {
float:left;
width:150px;
}
gq_top_r {
float:right;
width:750px;
}
.gq_path {
width:950px;
height:27px;
padding-left:10px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid; BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
margin-top:10px;
}
.gq_path_l {
float:left;
width:700px;
font-size:14px;
padding-top:6px;
}
.gq_path_r {
float:right;
width:145px;
padding-top:3px;
}
.gq_path_r Input
{
BACKGROUND-COLOR: #ffffff; 
BORDER-BOTTOM: #666666 1px solid;
BORDER-LEFT: #666666 1px solid;
BORDER-RIGHT: #666666 1px solid;
BORDER-TOP: #666666 1px solid;
COLOR: #666666;
HEIGHT: 18px;
border-color: #666666 #666666 #666666 #666666; font-size: 9pt
}
/* 按钮的CSS定义:对应CSS中的“BUTTON”，这里为按钮的风格设置，可定义内容为背景、字体、颜色、边框等 */
.gq_path_r Button
{
FONT-SIZE: 9pt;HEIGHT: 20px;
}
.gq_top_search {
width:950px;
height:27px;
font-size:14px;
font-weight:bold;
padding-left:10px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid; BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
margin-top:10px;
}
.gq_top_search_l {
float:left;
width:150px;
font-size:14px;
padding-top:6px;
}
.gq_top_search_r {
float:right;
width:700px;
}
.gq_top_search_r_1 {
float:left;
width:495px;
}
.gq_top_search_r_2 {
float:right;
width:200px;
text-align:left;
}
.gq_top_search_r_1 Input
{
BACKGROUND-COLOR: #ffffff; 
BORDER-BOTTOM: #666666 1px solid;
BORDER-LEFT: #666666 1px solid;
BORDER-RIGHT: #666666 1px solid;
BORDER-TOP: #666666 1px solid;
COLOR: #666666;
HEIGHT: 18px;
border-color: #666666 #666666 #666666 #666666; font-size: 9pt
}
/* 按钮的CSS定义:对应CSS中的“BUTTON”，这里为按钮的风格设置，可定义内容为背景、字体、颜色、边框等 */
.gq_top_search_r_1 Button
{
FONT-SIZE: 9pt;HEIGHT: 20px;
}
.gq_top_search_r_2 Button
{
FONT-SIZE: 9pt;HEIGHT: 20px;
}
.gq_main {
width:950px;
margin-top:10px;
}
.gq_l {
width:205px;
float:left;
}
.gq_l_1 {
width:205px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid; BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:100px;
}
.gq_title_1 {
width:205px;
height:30px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
font-weight:bold;
padding-top:6px;
padding-left:10px;
text-align:justify;
}
.gq_content_1 {
width:205px;
text-align:justify;
padding-left:5px;
padding-bottom:10px;
line-height:30px;
}
.gq_title_2 {
width:200px;
height:30px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
font-weight:bold;
padding-top:6px;
padding-left:10px;
text-align:justify;
}
.gq_content_2 {
width:200px;
line-height:30px;
text-align:left;
padding:10px;
}
.gq_title_3 {
width:525px;
height:30px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
font-weight:bold;
padding-top:6px;
padding-left:10px;
text-align:justify;
}
.gq_title {
width:525px;
height:30px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
padding-top:6px;
padding-left:10px;
text-align:justify;
}
.gq_title_l {
width:950px;
height:26px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
padding-top:6px;
padding-left:10px;
text-align:justify;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid; BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
}
.gq_title_left {
font-weight:bold;
float:left;
width:450px;
}
.gq_title_right {
float:right;
width:50px;
padding-right:5px;
}
.gq_content_3 {
width:525px;
text-align:justify;
padding-bottom:10px;
}
.gq_content_3_s {
width:525px;
text-align:justify;
}
.gq_content_3 td {
color:#2E4690;
height:30px;
BORDER-BOTTOM: #7aaddf 1px dashed; 
}
.gq_content_3_sub td {
color:#2E4690;
height:30px;
BORDER-BOTTOM: #7aaddf 1px dashed; 
}
.gq_l_2 {
width:205px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
margin-top:10px;
}
.gq_l_3 {
width:205px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
margin-top:10px;
}
.gq_right {
float:right;
width:735px;
}
.gq_m {
width:525px;
float:left;
}
.gq_m_1 {
width:525px;
height:100px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
}
.gq_m_1_sub {
width:525px;
height:100px;
}
.gq_content_3_sub {
width:525px;
margin-top:10px;
}
.gq_content_3_main {
width:525px;
padding-top:10px;
padding-left:10px;
padding-right:10px;
padding-bottom:10px;
line-height:30px;
}
.gq_title_3_sub {
width:525px;
height:27px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
font-weight:bold;
padding-top:6px;
padding-left:10px;
text-align:justify;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
}
.gq_m_main {
width:525px;
float:left;
BORDER-top: #7aaddf 1px solid;
}
.gq_middle {
width:525px;
height:100px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; 
height:100px;
}
.gq_m_2 {
width:525px;
height:300px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:100px;
margin-top:10px;
}
.gq_r {
float:right;
width:200px;
}
.gq_r_1 {
width:200px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:100px;
}
.gq_r_2 {
width:200px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:300px;
margin-top:10px;
}
.gq_r_s {
width:200px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; 
height:100px;
}
.gq_r_3 {
width:200px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:100px;
margin-top:10px;
}
.li_sup {
list-style:none; background:url(/Skin/syku/li.gif) no-repeat;
padding-left:5px;
BORDER-BOTTOM: #7aaddf 1px dashed; 
}		
/* 供求定义结束 */
/* 专题定义开始 */
.shipin_top {
width:950px;
height:27px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid; BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
margin-top:10px;
font-size:12px;
padding-top:6px;
padding-left:10px;
text-align:justify;
background-image:url(/Skin/syku/menu_bg.jpg);
}
.shipin_top_l {
float:left;
width:600px;
}
shipin_top_r {
float:right;
width:345px;
}
.shipin_main {
width:950px;
margin-top:10px;
}
.shipin_l {
width:205px;
float:left;
}
.shipin_l_1 {
width:205px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid; BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:100px;
}
.shipin_title_1 {
width:205px;
height:30px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
font-weight:bold;
padding-top:6px;
padding-left:10px;
text-align:justify;
}
.shipin_content_1 {
width:205px;
text-align:justify;
padding-left:2px;
padding-bottom:10px;
line-height:30px;
}
.shipin_title_2 {
width:200px;
height:30px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
font-weight:bold;
padding-top:6px;
padding-left:10px;
text-align:justify;
}
.shipin_content_2 {
width:200px;
line-height:30px;
text-align:left;
padding:10px;
}
.shipin_title_3 {
width:525px;
height:30px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
font-weight:bold;
padding-top:6px;
padding-left:10px;
text-align:justify;
}
.shipin_title {
width:525px;
height:30px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
padding-top:6px;
padding-left:10px;
text-align:justify;
}
.shipin_title_l {
width:950px;
height:26px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
padding-top:6px;
padding-left:10px;
text-align:justify;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid; BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
}
.shipin_title_left {
font-weight:bold;
float:left;
width:450px;
}
.shipin_title_right {
float:right;
width:50px;
padding-right:5px;
}
.shipin_content_3 {
width:525px;
text-align:justify;
padding-bottom:10px;
}
.shipin_content_3_s {
width:525px;
text-align:justify;
}
.shipin_content_3 td {
color:#2E4690;
height:30px;
BORDER-BOTTOM: #7aaddf 1px dashed; 
}
.shipin_content_3_sub td {
color:#2E4690;
height:30px;
BORDER-BOTTOM: #7aaddf 1px dashed; 
}
.shipin_l_2 {
width:205px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
margin-top:10px;
}
.shipin_l_3 {
width:205px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
margin-top:10px;
}
.shipin_right {
float:right;
width:735px;
}
.shipin_m {
width:525px;
float:left;
}
.shipin_m_1 {
width:525px;
height:100px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
}
.shipin_m_1_sub {
width:525px;
height:100px;
}
.shipin_content_3_sub {
width:525px;
margin-top:10px;
}
.shipin_content_3_main {
width:525px;
padding-top:10px;
padding-left:10px;
padding-right:10px;
padding-bottom:10px;
line-height:30px;
}
.shipin_title_3_sub {
width:525px;
height:27px;
background-image:url(/Skin/syku/menu_bg.jpg);
font-size:14px;
font-weight:bold;
padding-top:6px;
padding-left:10px;
text-align:justify;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
}
.shipin_m_main {
width:525px;
float:left;
BORDER-top: #7aaddf 1px solid;
}
.shipin_middle {
width:525px;
height:100px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; 
height:100px;
}
.shipin_m_2 {
width:525px;
height:300px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:100px;
margin-top:10px;
}
.shipin_r {
float:right;
width:200px;
}
.shipin_r_1 {
width:200px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:100px;
}
.shipin_r_2 {
width:200px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:300px;
margin-top:10px;
}
.shipin_r_s {
width:200px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; 
height:100px;
}
.shipin_r_3 {
width:200px;
BORDER-RIGHT: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;  BORDER-BOTTOM: #7aaddf 1px solid; BORDER-top: #7aaddf 1px solid;
height:100px;
margin-top:10px;
}
.zhuanti_t {
	width:405px;
	height:16px;
	float:left;
	line-height:16px;
	text-align:left;
         letter-spacing:2px;
         color:#2E4690;
}
.zhuanti_focus {
width:200px;
line-height:30px;
text-align:left;
padding:0px;
}
.zhuanti_focus_o {
width:200px;
}
.zhuanti_list {
width:525px;
text-align:justify;
padding:10px;
font-size:12px;
}
.zhuanti_list td {
color:#2E4690;
height:30px;
BORDER-BOTTOM: #7aaddf 1px dashed; 
}
/* 专题定义结束 */
#slideTitle {
padding-top:3px;
text-align:justify;
background: #e4edf9;
height:25px;
font-size:13px;
color:#2E4690;
}
#slideTitle a {
color:#222d44;
}
.search_left {
float:left;
width:120px;
padding-top:4px;
padding-left:10px;
}
.search_right {
float:right;
width:590px;
text-align:left;
}
.main_tdbg_575 /* 中栏内容表格背景、文字颜色定义(575) */
{
border: 1px solid #D2D3D9;line-height: 150%;text-align: left;padding-left:5;padding-right:5;
}
/* 通栏广告定义开始 */
.950_a {
width:950px;
margin-top:10px;
}
.950_a_l{float:left;width:950px;height:60px;text-align:left;margin-left:0px;
    margin-bottom:0px;}
.950_a_t{
	float:left;
	width:19px;
	height:60px;
	text-align:center;
}
.950_a_r{float:right;width:930px;height:auto;text-align:left;font-size:12px;}
.950_a_r_l {
width:170px;
float:left;
}
.950_a_r_l_1 {
width:170px;
height:20px;
}
.950_a_r_l_2 {
width:170px;
height:20px;
}
.950_a_r_l_3 {
width:170px;
float:left;
height:20px;
}
.950_a_r_r {
width:760px;
float:right;
}
.950_gg {
width:950px;
margin-top:10px;
text-align:justify;
}
950_gg_l {
width:220px;
float:left;
}
950_gg_r {
width:720px;
float:right;
}
.950_menu {
width:950px;
margin-top:10px;
BORDER-RIGHT: #7aaddf 1px solid; BORDER-TOP: #7aaddf 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #7aaddf 1px solid;BORDER-bottom: #7aaddf 1px solid;
}
.950_menu_l{float:left;width:20px;height:60px;text-align:left;margin-left:0px;
    margin-bottom:0px;}
.950_menu_t{
	float:left;
	width:19px;
	height:163px;
	text-align:center;
         padding-top:50px;
}
.950_menu_r{float:right;width:915px;height:auto;text-align:left;font-size:12px;}
.950_a_left {
float:left;
width:475px;
height:60px;
}
.950_a_left_l {
float:left;
width:237px;
}
.950_a_left_r {
float:right;
width:238px;
}
.950_a_right {
float:right;
width:475px;
height:60px;
}
.950_a_right_l {
float:left;
width:237px;
}
.950_a_right_r {
float:right;
width:238px;
}
/* 通栏广告定义结束 */
.center_tdbgall /* 中部表格总背景颜色定义 */
{
background:#ffffff;width:950px;
}
.main_title_760 /* 标题导航表格背景、文字颜色定义(760) */
{
background:url(/Skin/Ind_arthd/etms/main_title_760u.gif);border:1px solid #D2D3D9;height: 28;color: #f60;
}
#down h2 { color: #004A72; line-height: 28px; height: 28px; margin: 0 0px; padding: 0 10px; border-bottom: 1px solid #C9E8FA; background-color: #ecf5fd; }
#down { float:left; border: 1px solid #7aaddf; background: #FBFDFF; }
#down { height: 100%; min-height: 305px; }
#down h2 strong { color: #063; }
#down h2 span { width: 600px; float: left; font-size: 14px;}
#down h2 a { font-size: 12px; text-decoration: none; float: right; }
#down h2 a:hover { text-decoration: underline; }
#down ul { width: 350px; margin: 3px 0; padding: 0 0 0 7px; list-style: none; float: left; } 
#down li { line-height: 25px; font-size:13px;}
#down li a { text-decoration: none; } 
#down li#check { margin: 3px 0 6px 0; padding: 3px 5px; border: 1px solid #BFDB89; background: #FCFFF6; width:300px;}
#down li#check strong { font-weight: normal; color: #063; }
#down li span { margin-left: 3px; }
#down li span a{ color:#656565; }  
#down li span#plugin img { vertical-align:middle; } * html #down li span#plugin img { padding-bottom:5px; } #screenshot { margin-left: 10px; float: right; } * html #screenshot { margin-bottom:4px; } #screenshot p { margin: 0 0 15px 0; padding: 0 6px; line-height: 27px; text-align:center; border: 1px dashed #C9E8FA; border-top: none; border-right: none; background: #FFFEF8; } #screenshot p a { text-decoration: none; } #screenshot h3 { font-size: 12px; color: #999; margin-bottom: 8px; padding: 0; border: none; background: none; } #screenshot img { width: 260px; height: 190px; margin: 0 4px 3px 0; padding: 2px; border: 1px solid #C9E8FA; background: #FFFEF8; } #screenshot a img:hover { border: 1px solid #06c; }
.channel_index_2_left_main ul { margin: 0; padding: 10px 0 8px 15px; list-style: none; } .channel_index_2_left_main li { line-height: 25px; width: 100px; padding-left: 20px; float: left; background: url(/Skin/syku/li_cat.gif) no-repeat left 45%; }
.channel_index_2_left_main ul p a {
text-decoration: underline;
font-size:13px;
padding-top:10px;
}
.channel_index_2_left_main_sub ul p a {
text-decoration: underline;
font-size:14px;
}
.channel_index_2_left_main_sub ul { margin: 0; padding: 3px 0 8px 15px; list-style: none; } .channel_index_2_left_main_sub li { line-height: 25px; width: 100px; padding-left: 20px; float: left; background: url(/Skin/syku/li_cat.gif) no-repeat left 45%; }
/*新版首页*/
.tred,a.tred:link,a.tred:visited{ color:#e04216;}
.left {
float:left;
color:#1874c7;
font-weight:bold;
}
.left_a {
float:left;
color:#1874c7;
font-weight:bold;
line-height:22px;
}
.right_a {
float:left;
color:#4d4d4d;
padding-left:2px;
line-height:22px;
}
.right {
float:right;
color:#1874c7;
text-decoration: underline;
}
.right a{text-decoration: underline;} /* 链接无下划线,有为underline */ 
.right a:link {color: #1874c7;} /* 未访问的链接 */
.right a:visited {color: #1874c7;} /* 已访问的链接 */
.right a:hover{COLOR: #e04216;text-decoration:none;} /* 鼠标在链接上 */ 
.right a:active {color: #1874c7;} /* 点击激活链接 */
.index1 {
width:950px;
margin-top:5px;
}
.index1_l {
float:left;
width:298px;
height:515px;
background:#e8f1f8;
BORDER-RIGHT: #a3bfe7 1px solid; BORDER-TOP: #a3bfe7 1px solid; BORDER-LEFT: #a3bfe7 1px solid;  BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index1_l_top {
width:290px;
height:20px;
}
.index1_l_top_l {
float:left;
padding-top:5px;
padding-left:10px;
color:#1874c7;
font-weight:bold;
}
.index1_l_top_r {
float:right;
}
.index1_l_focus {
margin-top:5px;
height:190px;
width:288px;
background:#ffffff;
border-top:1px solid #d8e4f0;
border-left:1px solid #d8e4f0;
border-right:1px solid #d8e4f0;
border-bottom:1px solid #d8e4f0;
}
.index1_l_menu {
margin-top:5px;
height:20px;
width:278px;
background:#ffffff;
text-align:justify;
padding-top:5px;
padding-left:10px;
border-top:1px solid #d8e4f0;
border-left:1px solid #d8e4f0;
border-right:1px solid #d8e4f0;
border-bottom:1px solid #d8e4f0;
}
.index1_l_search {
margin-top:5px;
height:20px;
width:278px;
background:#ffffff;
text-align:justify;
padding-top:5px;
padding-left:5px;
border-top:1px solid #d8e4f0;
border-left:1px solid #d8e4f0;
border-right:1px solid #d8e4f0;
border-bottom:1px solid #d8e4f0;
}
.navi {
background:url(/Skin/syku/listbg.gif) no-repeat; 
padding-left:28px; font-size:12px; line-height:26px; margin-top:2px
}
.index1_r {
width:645px;
float:right;
}
.index1_r_main {
width:645px;
}
.index1_r_main_l {
background:#e8f1f8;
float:left;
width:360px;
height:478px;
BORDER-RIGHT: #a3bfe7 1px solid; BORDER-TOP: #a3bfe7 1px solid; BORDER-LEFT: #a3bfe7 1px solid;  BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index1_r_main_l_t {
width:340px;
height:20px;
text-align:justify;
padding-left:10px;
padding-top:5px;
padding-right:10px;
}
.index1_r_main_l_m {
height:441px;
width:338px;
background:#ffffff;
border-top:1px solid #d8e4f0;
border-left:1px solid #d8e4f0;
border-right:1px solid #d8e4f0;
border-bottom:1px solid #d8e4f0;
text-align:justify;
padding-left:5px;
padding-right:5px;
padding-top:5px;
}
.index1_r_main_r {
float:right;
width:278px;
height:385px;
background-image:url(/Skin/syku/menu_bg.gif);
}
.index1_r_main_r_f {
width:276px;
height:124px;
background:#ffffff;
BORDER-RIGHT: #a3bfe7 1px solid; BORDER-LEFT: #a3bfe7 1px solid;  BORDER-BOTTOM: #a3bfe7 1px solid;
text-align:justify;
}
.index1_r_main_r_f .pic_art_title a{color:#ff0000;font-size:12px;line-height:30px}
.index1_r_main_r_f .pic_art_img{float:left;padding-top:5px;width:120px;height:72px;}
.index1_r_main_r_f .pic_art_content,.index1_r_main_r_f .pic_art_title{float:right;width:145px;line-height:20px}
.index1_r_atext {
margin-top:5px;
width:643px;
height:28px;
background:#e8f1f8;
BORDER-RIGHT: #a3bfe7 1px solid; BORDER-LEFT: #a3bfe7 1px solid; BORDER-BOTTOM: #a3bfe7 1px solid; BORDER-top: #a3bfe7 1px solid;
}
.index_gg {
width:950px;
margin-top:5px;
}
.index_gg_left {
width:300px;
height:60px;
float:left;
background:#e8f1f8;
}
.index_gg_right {
width:645px;
height:60px;
}
.index_gg_right_l {
float:left;
width:468px;
}
.index_gg_right_r {
float:right;
width:172px;
margin-left:5px;
}
.index2 {
width:950px;
margin-top:5px;
}
.index2_l {
width:298px;
height:300px;
float:left;
BORDER-RIGHT: #a3bfe7 1px solid; BORDER-TOP: #a3bfe7 1px solid; BORDER-LEFT: #a3bfe7 1px solid;  BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index2_l_t {
width:278px;
height:20px;
background-image:url(/Skin/syku/menu_bg.gif);
padding-left:10px;
padding-right:10px;
padding-top:5px;
border-bottom:1px solid #a3bfe7;
}
.index2_l_main {
width:290px;
height:260px;
background:#ffffff;
text-align:justify;
}
.index2_l_main .pic_art_title a{color:#ff0000;font-size:12px;line-height:20px}
.index2_l_main .pic_art_img{float:left;padding-bottom:5px;padding-top:5px;width:100px;height:72px;}
.index2_l_main .pic_art_content,.index2_l_main .pic_art_title{float:right;width:190px;line-height:20px;}
.index2_l_main table{border-top:1px dashed #a3bfe7;}
.index2_r {
float:right;
width:645px;
}
.index2_r_l {
float:left;
width:358px;
height:300px;
BORDER-RIGHT: #a3bfe7 1px solid; BORDER-TOP: #a3bfe7 1px solid; BORDER-LEFT: #a3bfe7 1px solid;  BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index2_r_l_t {
height:20px;
background-image:url(/Skin/syku/menu_bg.gif);
padding-left:10px;
padding-right:10px;
padding-top:5px;
BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index2_r_l_m {
width:350px;
height:260px;
background:#ffffff;
text-align:justify;
}
.index2_r_l_m .pic_art_title a{color:#ff0000;font-size:12px;line-height:20px}
.index2_r_l_m .pic_art_img{float:left;padding-bottom:5px;padding-top:5px;width:100px;height:72px;}
.index2_r_l_m .pic_art_content,.index2_r_l_m .pic_art_title{float:right;width:250px;line-height:20px}
.index2_r_l_m table{border-top:1px dashed #a3bfe7;}
.index2_r_r {
float:right;
width:278px;
height:300px;
BORDER-RIGHT: #a3bfe7 1px solid; BORDER-TOP: #a3bfe7 1px solid; BORDER-LEFT: #a3bfe7 1px solid;  BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index2_r_r_t {
height:20px;
background-image:url(/Skin/syku/menu_bg.gif);
padding-left:10px;
padding-right:10px;
padding-top:5px;
BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index2_r_r_m {
width:270px;
height:260px;
background:#ffffff;
text-align:justify;
}
.index3 {
width:950px;
margin-top:5px;
}
.index3_l {
width:298px;
height:300px;
BORDER-RIGHT: #a3bfe7 1px solid; BORDER-TOP: #a3bfe7 1px solid; BORDER-LEFT: #a3bfe7 1px solid;  BORDER-BOTTOM: #a3bfe7 1px solid;
float:left;
}
.index3_l_t {
width:278px;
height:20px;
background-image:url(/Skin/syku/menu_bg.gif);
padding-left:10px;
padding-right:10px;
padding-top:5px;
BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index3_l_main {
width:290px;
height:260px;
background:#ffffff;
text-align:justify;
}
.index3_l_main .pic_art_title a{color:#ff0000;font-size:12px;line-height:20px}
.index3_l_main .pic_art_img{float:left;padding-bottom:5px;padding-top:5px;width:100px;height:72px;}
.index3_l_main .pic_art_content,.index3_l_main .pic_art_title{float:right;width:190px;line-height:20px}
.index3_l_main table{border-top:1px dashed #a3bfe7;}
.index3_r {
float:right;
width:645px;
}
.index3_r_l {
float:left;
width:358px;
height:300px;
BORDER-RIGHT: #a3bfe7 1px solid; BORDER-TOP: #a3bfe7 1px solid; BORDER-LEFT: #a3bfe7 1px solid;  BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index3_r_l_t {
height:20px;
background-image:url(/Skin/syku/menu_bg.gif);
padding-left:10px;
padding-right:10px;
padding-top:5px;
BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index3_r_l_m {
width:350px;
height:260px;
background:#ffffff;
text-align:justify;
}
.index3_r_r {
float:right;
width:278px;
height:300px;
BORDER-RIGHT: #a3bfe7 1px solid; BORDER-TOP: #a3bfe7 1px solid; BORDER-LEFT: #a3bfe7 1px solid;  BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index3_r_r_t {
height:20px;
background-image:url(/Skin/syku/menu_bg.gif);
padding-left:10px;
padding-right:10px;
padding-top:5px;
BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index3_r_r_m {
width:270px;
height:90px;
background:#ffffff;
text-align:justify;
BORDER-BOTTOM: #a3bfe7 1px dashed;
}
.index3_r_r_f {
width:270px;
height:160px;
background:#ffffff;
text-align:justify;
}
.index3_r_r_m .pic_soft_title a{color:#ff0000;font-size:12px;line-height:20px}
.index3_r_r_m .pic_soft_img{float:left;padding-top:5px;width:80px;height:72px;}
.index3_r_r_m .pic_soft_content,.index3_r_r_m .pic_soft_title{float:right;width:170px;line-height:20px}
.index4 {
width:950px;
margin-top:5px;
}
.index4_l {
float:left;
width:298px;
height:902px;
BORDER-RIGHT: #a3bfe7 1px solid; BORDER-TOP: #a3bfe7 1px solid; BORDER-LEFT: #a3bfe7 1px solid;  BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index4_l_1 {
height:20px;
background-image:url(/Skin/syku/menu_bg.gif);
padding-left:10px;
padding-right:10px;
padding-top:5px;
BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index4_l_main {
width:298px;
height:206px;
background:#ffffff;
text-align:justify;
}
.index4_l_gg {
width:298px;
height:202px;
background:#ffffff;
}
.index4_l_2 {
height:20px;
background-image:url(/Skin/syku/menu_bg.gif);
padding-left:10px;
padding-right:10px;
padding-top:5px;
BORDER-TOP: #a3bfe7 1px solid;
BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index4_r {
float:right;
width:645px;
}
.index4_r_1 {
width:645px;
}
.index4_r_1_l {
float:left;
width:358px;
height:365px;
BORDER-RIGHT: #a3bfe7 1px solid; BORDER-TOP: #a3bfe7 1px solid; BORDER-LEFT: #a3bfe7 1px solid;  BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index4_r_1_l_1 {
width:338px;
height:20px;
background-image:url(/Skin/syku/menu_bg.gif);
padding-left:10px;
padding-right:10px;
padding-top:5px;
BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index4_r_1_l_main {
width:348px;
height:201px;
background:#ffffff;
text-align:justify;
}
.index4_r_1_l_main_s {
width:348px;
height:80px;
background:#ffffff;
text-align:justify;
}
.index4_r_1_l_main_s .pic_photo_title a{color:#ff0000;font-size:12px;line-height:20px}
.index4_r_1_l_main_s .pic_photo_img{float:left;padding-top:5px;width:100px;height:72px;}
.index4_r_1_l_main_s .pic_photo_content,.index4_r_1_l_main .pic_photo_title{float:right;width:240px;line-height:20px}
.index4_r_1_l_main_s .pic_photo_title a{color:#ff0000;font-size:12px;line-height:20px}
.index4_r_1_l_main .pic_photo_img{float:left;padding-top:5px;width:100px;height:72px;}
.index4_r_1_l_main .pic_photo_content,.index4_r_1_l_main .pic_photo_title{float:right;width:240px;line-height:20px}
.index4_r_1_l_2 {
width:338px;
height:20px;
background-image:url(/Skin/syku/menu_bg.gif);
padding-left:10px;
padding-right:10px;
padding-top:5px;
BORDER-top: #a3bfe7 1px solid;
BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index4_r_1_r {
float:right;
width:278px;
height:365px;
BORDER-RIGHT: #a3bfe7 1px solid; BORDER-TOP: #a3bfe7 1px solid; BORDER-LEFT: #a3bfe7 1px solid;  BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index4_r_1_r_t {
height:20px;
background-image:url(/Skin/syku/menu_bg.gif);
padding-left:10px;
padding-right:10px;
padding-top:5px;
BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index4_r_1_r_m {
width:275px;
height:90px;
background:#ffffff;
text-align:justify;
BORDER-BOTTOM: #a3bfe7 1px dashed;
}
.index4_r_1_r_f {
width:275px;
height:220px;
background:#ffffff;
text-align:justify;
}
.index4_r_2 {
margin-top:5px;
width:643px;
height:272px;
BORDER-RIGHT: #a3bfe7 1px solid; BORDER-TOP: #a3bfe7 1px solid; BORDER-LEFT: #a3bfe7 1px solid;  BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index4_r_2_t {
height:20px;
background-image:url(/Skin/syku/menu_bg.gif);
padding-left:10px;
padding-right:10px;
padding-top:5px;
BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index4_r_2_main {
width:635px;
height:160px;
background:#ffffff;
text-align:justify;
}
.index4_r_2_l {
float:left;
width:358px;
height:245px;
border-right:1px dashed #a3bfe7;
}
.index4_r_2_l_t {
width:358px;
height:120px;
border-bottom:1px dashed #a3bfe7;
}
.index4_r_2_l_t_l { 
float:left;
width:100px;
}
.index4_r_2_l_t_r {
float:right;
width:250px;
}
.index4_r_2_l_t_r_t {
padding-top:5px;
width:250px;
height:20px;
}
.index4_r_2_l_t_r_f {
width:250px;
line-height:22px;
}
.index4_r_2_l_f {
width:358px;
height:80px;
}
.index4_r_2_r {
float:right;
width:275px;
}
.index4_r_2_r_t_l { 
float:left;
width:100px;
}
.index4_r_2_r_t_r {
float:right;
width:170px;
}
.index4_r_2_r_t_r_t {
padding-top:5px;
width:170px;
height:20px;

}
.index4_r_2_r_t_r_f {
width:170px;
}
.index4_r_2_r_t {
width:275px;
height:120px;
border-bottom:1px dashed #a3bfe7;
}
.index4_r_2_r_f {
width:275px;
height:80px;
}
.index4_r_3 {
margin-top:5px;
width:645px;
height:200px;
}
.index4_r_3_l {
float:left;
width:358px;
height:252px;
BORDER-RIGHT: #a3bfe7 1px solid; BORDER-TOP: #a3bfe7 1px solid; BORDER-LEFT: #a3bfe7 1px solid;  BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index4_r_3_l_t {
height:20px;
background-image:url(/Skin/syku/menu_bg.gif);
padding-left:10px;
padding-right:10px;
padding-top:5px;
border-bottom:1px solid #a3bfe7;
}
.index4_r_3_l_m {
width:350px;
height:224px;
background:#ffffff;
text-align:justify;
line-height:22px;
}
.index4_r_3_r {
float:right;
width:278px;
height:252px;
BORDER-RIGHT: #a3bfe7 1px solid; BORDER-TOP: #a3bfe7 1px solid; BORDER-LEFT: #a3bfe7 1px solid;  BORDER-BOTTOM: #a3bfe7 1px solid;
}
.index4_r_3_r_t {
height:20px;
background-image:url(/Skin/syku/menu_bg.gif);
padding-left:10px;
padding-right:10px;
padding-top:5px;
border-bottom:1px solid #a3bfe7;
}
.index4_r_3_r_m {
width:270px;
height:160px;
background:#ffffff;
text-align:justify;
line-height:25px;
}
/* 首页样式定义 */
/*第二种形式*/
#nav1{
 text-align:left;
 width:278px;
}
.imenu1box{
 position:relative;
 overflow:hidden;
 height:25px;
 width:278px;
 text-align:left;
}
#imenu1{
 position:absolute;
 top:0;
 left:0;
 z-index:1;
}
#imenu1 li{
 float:left;
 display:block;
 cursor:pointer;
 width:80px;
 text-align:center;
 line-height:24px;
 height:24px;
}
#imenu1 li a {
color:#1874c7;
}
#imenu1 li.hover{
 background:#e8f1f8;
 border-left:1px solid #a3bfe7;
 border-top:1px solid #a3bfe7;
 border-right:1px solid #a3bfe7;
 color:#1874c7;
 font-weight:bold;
}
.imain1box{
 clear:both;
 margin-top:-1px;
 border-top:1px solid #a3bfe7;
 border-left:1px solid #a3bfe7;
 border-right:1px solid #a3bfe7;
 border-bottom:1px dashed #a3bfe7;
 height:328px;
 width:276px;
 background:#e8f1f8;
}
.imain{
 clear:both;
 padding:8px;
 text-align:center;
}
#imain1 ul{
 display: none;
 text-align:justify;
}
#imain1 ul.block{
 display: block;
}
.listhot {color: black;font-family:"黑体";font-size: 18px;line-height: 150%;text-align:center;}
A.listhot:link {color: black;text-decoration: underline;}
A.listhot:visited {color: black;text-decoration:underline;}
A.listhot:active {color: black;text-decoration: underline;}
A.listhot:hover {color: red;text-decoration: underline;}
.bbb {
line-height: 160%;font-size:12px;
BORDER-BOTTOM: #a3bfe7 1px dashed;
}
