/* body的css定义:对应css中“body”，可定义内容为网页字体颜色、背景、浏览器边框等 */
/* 网站链接总的css定义:可定义内容为链接字体颜色、样式等 */
a{
	text-decoration: none;
	font-family: "宋体";
	font-size: 12px;
	color: #333333;
} /* 链接无下划线,有为underline */ 

a:link {
	font-family: "宋体";
	font-size: 12px;
	
	text-decoration: none;
} /* 未访问的链接 */
a:visited {
	font-family: "宋体";
	font-size: 12px;
	text-decoration: none;
} /* 已访问的链接 */
a:hover{
	font-family: "宋体";
	font-size: 12px;
	color: #cc0000;
	text-decoration: none;
} /* 鼠标在链接上 */
 
a:active {
	font-family: "宋体";
	font-size: 12px;
	
	text-decoration: none;
} /* 点击激活链接 */
