/* 网站链接总的css定义:可定义内容为链接字体颜色、样式等 */ a{text-decoration: none;} /* 链接无下划线,有为underline */ a:link {color: #000000;} /* 未访问的链接 */ a:visited {color: #333333;} /* 已访问的链接 */ a:hover{color: #ae0927;} /* 鼠标在链接上 */ a:active {color: #0000ff;} /* 点击激活链接 */ /* 顶部频道文字链接的css定义--将顶部频道文字链接与网站链接总的css定义分开,以后可以制作深底浅字的格式,如果要保持原来的设计样式,将此定义内容删除或定义成与网站链接总的css相同即可。调用代码为*** */ a.channel:link {color: #ffffff;} a.channel:visited {color: #ffffff;} a.channel:hover{color: #ffff00;} a.channel:active {color: #ffffff;} /* 顶部当前频道文字链接的css定义--调用代码为*** */ a.channel2:link {color: #ffff00;} a.channel2:visited {color: #ffff00;} a.channel2:hover{color: #ff6600;} a.channel2:active {color: #ffff00;} /* 底部版权信息文字链接的css定义--与顶部频道文字链接定义的想法相同。可设置与顶部频道文字链接定义不同的文字颜色,网页内定义以预留。调用代码为*** */ a.bottom:link {color: #ffffff;} a.bottom:visited {color: #ffffff;} a.bottom:hover{color: #ffff00;} a.bottom:active {color: #ffffff;} /* 文章栏目标题文字链接的css定义--可设置与顶部频道文字链接定义不同的文字颜色,网页内定义以预留。要相同可不设置。调用代码为*** */ a.class:link {color: #ffffff;} a.class:visited {color: #ffffff;} a.class:hover{color: #ff0000;} a.class:active {color: #ffffff;} /* 文章栏目标题文字链接的css定义--可设置与顶部频道文字链接定义不同的文字颜色,网页内定义以预留。要相同可不设置。调用代码为*** */ a.class1:link {color: #0000ff;text-decoration: underline;} a.class1:visited {color: #0000ff;text-decoration: underline;} a.class1:hover{color: #33CC00;text-decoration: underline;} a.class1:active {color: #33CC00;text-decoration: underline;} /* body的css定义:对应css中“body”,可定义内容为网页字体颜色、背景、浏览器边框等 */ body { font-family: "Arial", "Helvetica", "sans-serif","宋体"; font-size: 9pt; text-decoration: none; scrollbar-face-color: #f6f6f6; scrollbar-highlight-color: #ffffff; scrollbar-shadow-color: #cccccc; scrollbar-3dlight-color: #cccccc; scrollbar-arrow-color: #330000; scrollbar-track-color: #f6f6f6; scrollbar-darkshadow-color: #ffffff; color: #555555; background-image: url(bg.jpg); background-repeat: repeat-x; } /* 单元格的css定义:对应css中的“td”,这里为总的表格定义,为一般表格的的单元格风格设置,可定义内容为背景、字体颜色、样式等 */ td { font-family: "Arial", "Helvetica", "sans-serif","宋体";font-size: 11px;line-height: 150%; } /* 文本框的css定义:对应css中的“input”,这里为文本框的风格设置,可定义内容为背景、字体、颜色、边框等 */ input.de { font-size: 9pt; font-family: Arial, Helvetica, sans-serif, "宋体"; border: 1px solid #666666; } /* 按钮的css定义:对应css中的“button”,这里为按钮的风格设置,可定义内容为背景、字体、颜色、边框等 */ /* 下拉列表框的css定义:对应css中的“select”,这里为下拉列表框的风格设置,可定义内容为背景、字体、颜色、边框等 */ select { font-size: 9pt;height: 20px; } /* 顶部用户登录文字链接的css定义 */ .top_userlogin { color: #037fa8; } /* ==频道通用表格css定义开始== */ .channel_border /* 灰色表格边框背景颜色定义(760) */ { border: 1px solid #cccccc; } .channel_title /* 标题背景颜色定义(760) */ { background: #cccccc;color: #037fa8;height: 27;text-align: center;font-weight:bold; } .channel_tdbg /* 表格背景颜色定义(760) */ { background:#fafafa;line-height: 120%; } .channel_pager /* 分页表格背景颜色定义(760) */ { background:#fafafa;line-height: 120%; }   /* --评论显示页的css定义开始-- */ .comment_border /* 蓝色表格边框背景颜色定义(760) */ { border: 1px solid #449ae8; } .comment_title /* 标题背景颜色定义(760) */ { background:#449ae8;color: #ffffff;font-weight: normal;height: 25; } .comment_tdbg1 /* 表格背景颜色定义(760) */ { background:#ffffff;line-height: 120%; } .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; }