﻿/*整体设置*/
body {
	background-color:#000;	/*背景颜色*/
	background-image:url(/images/bg.jpg);	/*背景图片*/
	background-repeat:repeat;
}
body,p,td,th {
	color:#fff;	/*文字颜色*/
	font-size:12px;
	word-break:break-all;
	word-wrap:break-word;
	overflow-x:hidden;
	text-overflow:ellipsis;
	-o-text-overflow: ellipsis;
	line-height:160%;
}
img { border:0px;}

/*链接样式*/
a:link { color: #ff0000; text-decoration: none;}	/*链接文字颜色*/
a:hover { color: #ffff00; text-decoration: underline;}	/*鼠标经过时链接文字颜色*/
a:active { color: #fff000; text-decoration: none;}	/*得到焦点时链接文字颜色*/
a:visited { color: #ff0000; text-decoration: none;}	/*访问过的链接文字颜色*/