/**
* global css definition
* 【定义主页的全局页面属性】
* a链接缺省是#666;
* author sweetwater
*/
body{
text-align:center;/*水平居中*/
margin:0;/*清除边界默认值*/
padding:0;/*清除补白默认值*/
font: 11px/20px Arial, Helvetica, sans-serif;/*预定义字体*/
line-height:130%;/*定义字体行高*/
}
/** 【定义布局标签元素属性】**/
div,form,img,ul,ol,li,dl,dt,dd{margin:0;padding:0;border:0;}
ul{list-style-type:none;/*清除列表符号*/}
h1,h2,h3,h4,h5,h6{margin:0;padding:0;}
 
a:link,a:visited,a:active{/*预定义链接样式*/color:#666;text-decoration:none;}
a:hover{color:#666;text-decoration:underline;}
 
/**
* define the common class file
* 【公共颜色类 类名命名规则:小写字母c加颜色名称】
* loho首页目前有四种链接颜色 orange + green + blue + gray
* author sweetwater
*/
.cOrange,a.cOrange:link,a.cOrange:visited,a.cOrange:active{color:#b45500;}
.cGreen,a.cGreen:link,a.cGreen:visited,a.cGreen:active{color:#00834f;}
.cBlue,a.cBlue:link,a.cBlue:visited,a.cBlue:active{color:#105cb6;}
.cGray,a.cGray:link,a.cGray:visited,a.cGray:active{color:#7f7f7f;}
/**
* define the common class file
* 【公共字体类 类名命名规则:小写字母f加属性名称】
* author sweetwater
*/
.fB{/*粗体类*/font-weight:bold;}
.fi{/*斜体类*/font-style:italic;}
.f14{/*14像素字体类*/font-size:14px;}
/**
* define the common layout file
* 【公共布局类 类名命名规则:根据属性名称命名】
* author:sweetwater
*/
.left{/*左对齐类*/float:left;}
.right{/*右对齐类*/float:right;}
.center{/*居中类*/text-align:center;}
.clear{/*清除左右浮动类*/clear:both;font-size:1px;width:1px;visibility:hidden;line-height:100%;}
.hidden{/*隐藏元素类*/display:none;}
.dashed{/*虚下划线类*/border-bottom:dashed 1px #ccc;}
.solid{/*实下滑线类*/border-bottom:solid 1px #eee;}

