@charset "utf-8";
/* CSS Document */
/** body **/
body {
	/** 清除内外边距 **/
	margin:0px;
	padding:0px;
	/** 设置默认字体 **/
	font-family: "Microsoft YaHei", "微软雅黑", SimSun, "宋体", STXihei, "华文细黑", Heiti, "黑体", Helvetica, Tahoma, Arial, sans-serif;
	/** 设置默认字体大小 **/
	font-size:14px;
	color:#333333;
	background:#fbf8f8;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td,img { padding: 0; margin: 0; }
/** 重置列表元素 **/
ul, ol {
	list-style: none;
}
/** 重置超链接元素 **/
a{color:#000;text-decoration:none; outline:none;}
a:hover { text-decoration:underline;color: #f00;}

/*a:link {color:#FF0000;}		 未被访问的链接 */
/*a:visited {color:#00FF00;}	 已被访问的链接 */
/* a:hover {color:#0099FF;text-decoration: none;}	鼠标指针移动到链接上 */
/*a:active {color:#0000FF;}	 正在被点击的链接 */

/** 重置图片元素 **/
img {
	border:0px;
}
/** 浮动元素 **/
.fl {
	float:left
}
.fr {
	float:right
}
.clear {
	clear:both;
	height:0px !important;
	width:0px !important;
}
/**隐藏**/
.none{
  display: none;
}
/** 鼠标变手 **/
.pointer{cursor:pointer;}
/** 区域居中 **/
.center{ 
width:1000px; 
/**代表对象上下间隔为0px,左右间隔根据对象宽度自适应。 **/
margin:0px auto;
}
/** 文本居左 **/
.tl{
	text-align:left;
}
/** 文本居中 **/
.tc{
	text-align:center;
}
/** 文本居右 **/
.tr{
	text-align:right;
}
/** 块垂直居上 **/
.vt{
	vertical-align:top;
}
/** 块垂直居中 **/
.vm{
	vertical-align:middle;
}

/** 雪碧图例子 淘汰或用icon **/ 
/** .mian_icon{
  background-image: url('../../img/web/mian_icon.png');
}
on **/ 
/* 某图标 浅色 */
.mian_icon_one{
  background-position: -12px -9px;
}

/* 某图标 深色 */
.mian_icon_one:hover{
  background-position: -69px -9px;
}

/* 文本超出换点 以块元素长度*/
.text_intercept{
	/* 内容会被修剪，并且其余内容是不可见的 */
    overflow: hidden;
	/* 显示省略符号来代表被修剪的文本 */
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;/
    -moz-text-overflow: ellipsis;
	/*文本不会换行，文本会在在同一行上继续，直到遇到 <br> 标签为止*/
    white-space: nowrap;
	/* 
	扩展知识
	-o代表opera浏览器私有属性
	-moz代表firefox浏览器私有属性
	-ms代表IE浏览器私有属性
	-webkit代表chrome、safari私有属性
	*/
}
