﻿@charset "utf-8";
/*

CSS Document 
CSS兼容
property:value; 所有浏览器 
property:value\9; 所有IE浏览器
+property:value; IE7
_property:value; IE6 

*/
body {background-color:#fff;margin: 0 auto;padding: 0;font-family:宋体,Verdana, Arial, Helvetica, Sans-Serif;font-size:12px;color: #666;}

table {margin:0px;}

td {line-height:180%; text-align:left;}
th {line-height:180%; text-align:left;}

form {margin:0px; padding:0px;}

img {border:0px;}

p {margin: 0px; padding:0px;}

ul {margin:0px; padding:0px;}

dl {margin:0px; padding:0px;}
dt {margin:0px; padding:0px;}
dd {margin:0px; padding:0px;}
h1,h2,h3,h4{margin:0px; padding:0px;}

/*通用链接*/
a:link{color:#0000FF;text-decoration: none;}
a:visited{color:#0000FF;text-decoration: none;}
a:hover,a:active{color:#0000FF;text-decoration:underline;}

/*伪链接标准格式*/
a.Test:link {color: #000;text-decoration: none;}
a.Test:visited {color: #000;text-decoration: none;}
a.Test:hover, a.Test:active {color: #000;text-decoration:underline;}

.WebCenter {margin: 0px auto;}

/*清除浮动*/
/* 这是对Firefox进行的处理，因为Firefox支持生成元素，而IE所有版本都不支持生成元素 */
.ClearFix:after {}{content: "."; clear: both; height: 0; visibility: hidden; display: block;}
/* 这是对 Mac 上的IE浏览器进行的处理 */ 
.ClearFix {}{ display: inline-block;}
/* 这是对 win 上的IE浏览器进行的处理 */ 
* html .ClearFix {}{height: 1%;}
/* 这是对display: inline-block;进行的修改，重置为区块元素*/
.ClearFix {}{display: block;}         

/*溢出文字用省略号点代替*/
.HideWord {white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}
/*
溢出文字不显示省略号点
.HideWord {white-space:nowrap;text-overflow:ellipsis; text-overflow:clip;overflow:hidden;}
*/